Dotfiles/.gitconfig
2024-09-01 12:41:16 +02:00

32 lines
627 B
INI

[user]
name = Snoweuph
email = snow+git@euph.email
[commit]
gpgSign = true
[push]
autosetupremote = true
[help]
autoCorrect = prompt
[core]
editor = nvim
#pager = /usr/share/git-core/contrib/diff-highlight | less
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^
[interactive]
diffFilter = /usr/share/git-core/contrib/diff-highlight