dotfiles/.chezmoi.toml.tmpl

17 lines
460 B
Cheetah

{{ if eq .chezmoi.os "darwin" }}
[edit]
command = "code"
args = ["--wait"]
{{ else }}
command = "vim"
{{ end }}
# {{- $email := promptString "Git email address for the author/committer" }}
# {{- $name := promptString "Git username for the author/committer" }}
# {{- $signing_key := promptString "Signing key for commits (hint: gpg --list-keys)" }}
[data]
email = "{{ $email }}"
name = "{{ $name }}"
signing_key = "{{ $signing_key }}"