summaryrefslogtreecommitdiff
path: root/dot_config/wezterm/chezmoi.lua.tmpl
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-04-11 23:20:57 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commita99b211b3bec43ebe3cdfa1899cba227d1d569a4 (patch)
treea648712a5fa523f04670c32dd8eff6c2138b6669 /dot_config/wezterm/chezmoi.lua.tmpl
Initial commit
Diffstat (limited to 'dot_config/wezterm/chezmoi.lua.tmpl')
-rw-r--r--dot_config/wezterm/chezmoi.lua.tmpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/dot_config/wezterm/chezmoi.lua.tmpl b/dot_config/wezterm/chezmoi.lua.tmpl
new file mode 100644
index 0000000..a2fc09e
--- /dev/null
+++ b/dot_config/wezterm/chezmoi.lua.tmpl
@@ -0,0 +1,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