1
0
chezmoi/home/.chezmoi.toml.tmpl
2024-12-01 19:03:49 +01:00

18 lines
557 B
Cheetah

[merge]
command = "meld"
{{ $email := promptStringOnce . "email" "What is your main git email address " }}
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
{{ $hasNVim := promptBool "Do i install Neovim " false}}
{{ $hasLVim := promptBool "Do i install LunarVim " false }}
{{ $hasLatex := promptBool "Do i install latex " false }}
[git]
autoCommit = true
autoPush = true
[data]
hasNVim = {{ $hasNVim }}
hasLVim = {{ $hasLVim }}
hasLatex = {{ $hasLatex }}
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}