1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-14 10:53:09 +00:00
dotfiles/executable_dot_gitconfig.tmpl
Thomas A. Christensen II 779e7c5d32
Add default GPG signing to gitconfig
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
2022-05-16 08:35:20 -05:00

24 lines
353 B
Cheetah

[user]
name = {{ .name }}
email = {{ .email }}
signingkey = {{ .pubkey }}
[core]
editor = nano
[credential]
helper = store
[color]
ui = auto
[init]
defaultBranch = master
[github]
user = MillironX
[pull]
rebase = false
[commit]
gpgsign = true
{{- if eq .chezmoi.osRelease.id "fedora" }}
[diff]
tool = kdiff3
[merge]
tool = kdiff3
{{- end }}