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

11 lines
334 B
Cheetah
Raw Normal View History

2024-03-10 20:20:09 +01:00
{{ $email := promptString "What is your main git email address " "" }}
2024-03-10 20:22:47 +01:00
{{ $signinkey := promptString "What is your git signing key " "" }}
2024-03-10 20:20:09 +01:00
{{ $latex := promptBool "Do i install latex files " false }}
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 }}
latex = {{ $latex }}