1
0
chezmoi/home/.chezmoi.toml.tmpl

16 lines
532 B
Cheetah
Raw Normal View History

2024-08-02 16:33:15 +02:00
{{ $email := promptStringOnce . "email" "What is your main git email address " }}
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
2024-08-03 17:21:54 +02:00
{{ $hasNVim := promptBool "Do i install Neovim " false}}
{{ $hasLVim := promptBool "Do i install LunarVim " false }}
{{ $hasLatex := promptBool "Do i install latex " false }}
2024-03-05 18:46:34 +01:00
[git]
autoCommit = true
autoPush = true
2024-03-04 13:30:21 +01:00
[data]
2024-08-03 17:21:54 +02:00
hasNVim = {{ $hasNVim }}
hasLVim = {{ $hasLVim }}
hasLatex = {{ $hasLatex }}
2024-03-10 20:14:01 +01:00
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}
2024-08-03 17:21:54 +02:00