summaryrefslogtreecommitdiff
path: root/dot_config/wezterm/chezmoi.lua.tmpl
blob: e30841dce680dc47c357f84a9a8cc637e69f0ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- 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 -}}

return M