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

11 lines
381 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-02 16:34:11 +02:00
{{ $hasLatex := promptBoolOnce . "hasLatex" "Do i install latex files " }}
2024-03-05 18:46:34 +01:00
[git]
autoCommit = true
autoPush = true
2024-03-04 13:30:21 +01:00
[data]
2024-03-10 20:14:01 +01:00
email = {{ $email | quote }}
signinkey = {{ $signinkey | quote }}
2024-08-02 16:33:15 +02:00
hasLatex = {{ $hasLatex }}