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