1
0
forked from extern/nix-config
donovanglover-nix-config/dots/common/.gitconfig
Donovan Glover 7525bd8220
Change git aliases to abbreviations
Using abbreviations lets us take advantage of fish autocomplete and
helps us not forget the actual command being used.
2018-09-19 16:28:36 -04:00

48 lines
766 B
INI

[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 = firefox
[push]
default = simple
[branch]
autosetuprebase = always
[rerere]
enabled = true
[color]
ui = true
[alias]
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