1
0
chezmoi/home/.chezmoi.toml.tmpl
Jeff LANCE 66980f428f Up.
2024-08-03 17:21:54 +02:00

16 lines
532 B
Cheetah

{{ $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 }}