.gitconfig: Use git-contacts instead of git-cc
[dotfiles-public.git] / src / .gitconfig
1 # .gitconfig a Git configuration file
2
3 [user]
4         name = W. Trevor King
5         email = wking@tremily.us
6         signingkey = 0xFC29BDCDF15F5BE8
7
8 [push]
9         default = matching
10
11 [format]
12         thread = true
13
14 [sendemail]
15         from = W. Trevor King <wking@tremily.us>
16         cccmd = git-contacts
17         aliasesfile = /home/wking/.mutt/aliases
18         aliasfiletype = mutt
19
20 [color]
21         ui = auto
22
23 [diff "gpg"]
24         textconv = gpg -v
25         xfuncname = "^((pub|uid) .*)"
26
27 [alias]
28         authors = shortlog -se
29         glog = log --graph --topo-order --oneline --decorate
30         dlog = log --graph --date-order --oneline --decorate