mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 05:13:11 +01:00
93500e18e9
This commit puts all common dotfiles in the same directory. This makes it really easy to stow all my dotfiles that are common across all the setups I use, and also makes it easy for me to verify that all the dotfiles I need are already stowed with one simple command.
50 lines
838 B
INI
50 lines
838 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]
|
|
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
|