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

return M