.bashrc.d/20nobeep: Add missing ~/ prefix to one .mozilla path
[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 [rerere]
28         enabled = true
29
30 [alias]
31         authors = shortlog -se
32         glog = log --graph --topo-order --oneline --decorate
33         dlog = log --graph --date-order --oneline --decorate