Dotfiles/.gitconfig

29 lines
513 B
INI

[user]
name = Snoweuph
email = snow+git@euph.email
[commit]
gpgSign = true
[push]
autosetupremote = true
[help]
autoCorrect = prompt
[core]
editor = nvim
pager = delta
commentChar = ";"
[diff]
colorMoved = default
[fetch]
prune = true
prunetags = true
[alias]
adog = log --all --decorate --oneline --graph
fl = push --force-with-lease
prune-branches = "!git fetch -p && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs -r git branch -d"
show-last-commit = diff HEAD^