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

return M