---@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 -}} {{ if eq .chezmoi.os "darwin" -}} M.font_size = 14 {{ else }} M.font_size = 12 {{ end -}} return M