blob: fed09db6512b9927adec1112468056bc76fab8c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---@diagnostic disable: undefined-global
-- vim:ft=lua
--
-- chezmoi.lua
--
-- Contains Chezmoi-templated tweaks to Wezterm.
-- {{/* This file supports Go's text/template language. */}}
local M = {}
{{ if eq .chezmoi.os "windows" -}}
M.shell = "pwsh"
{{ else }}
M.shell = "zsh"
{{ end -}}
{{ if eq .chezmoi.os "darwin" -}}
M.font_size = 14
{{ else }}
M.font_size = 12
{{ end -}}
return M
|