dotfiles/home/.chezmoi.toml.tmpl

18 lines
373 B
Cheetah
Raw Normal View History

2021-12-08 09:38:24 -06:00
sourceDir = "~/.dotfiles"
2023-11-28 17:15:31 -06:00
{{ if promptBool "set default umask" false -}}
umask = 0o22
{{ end -}}
[diff]
command = 'delta'
2023-11-28 17:15:31 -06:00
{{ $email := promptString "git email" "daylinmorgan@gmail.com" -}}
{{ $name := promptString "git name" "Daylin Morgan" -}}
2022-09-29 10:26:12 -05:00
{{ $gui := promptBool "use gui configs" -}}
[data]
email = {{ $email | quote }}
name = {{ $name | quote }}
gui = {{ $gui }}