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

16 lines
532 B
Cheetah
Raw Normal View History

2024-08-02 14:33:15 +00:00
{{ $email := promptStringOnce . "email" "What is your main git email address " }}
{{ $signinkey := promptStringOnce . "signingkey" "What is your git signing key " }}
2024-08-03 15:21:54 +00: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 17:46:34 +00:00
[git]
autoCommit = true
autoPush = true
2024-03-04 12:30:21 +00:00
[data]
2024-08-03 15:21:54 +00:00
hasNVim = {{ $hasNVim }}
hasLVim = {{ $hasLVim }}
hasLatex = {{ $hasLatex }}
2024-03-10 19:14:01 +00:00
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}
2024-08-03 15:21:54 +00:00