Add .gitconfig to stow

This commit is contained in:
Donovan Glover 2018-04-13 21:19:19 -04:00
parent c06e4a51c3
commit 69fa377588
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

49
git/.gitconfig Normal file
View File

@ -0,0 +1,49 @@
[include]
path = ~/.gituser
# Always sign commits
[commit]
gpgsign = true
[core]
editor = vim
autocrlf = false
pager = diff-so-fancy | less --tabs=4 -RFX
excludesfile = ~/.gitignore
[web]
browser = waterfox
[push]
default = simple
[branch]
autosetuprebase = always
[rerere]
enabled = true
[color]
ui = true
[alias]
s = status -s
lg = log --oneline --decorate --all --graph -n 10
contrib = shortlog -n -s
remotes = remote -v
praise = blame
verify = log --show-signature
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow bold
old = red bold
new = green bold
whitespace = red reverse