Files
dot/config/gitconfig
Martin Pander 39674a4a1f Remove email
2020-09-10 10:24:56 +02:00

33 lines
688 B
Plaintext

[color]
ui = auto
status = auto
branch = auto
[core]
editor = nvim
[merge]
tool = nvimdiff
[mergetool "nvimdiff"]
cmd = nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'
[diff]
tool = nvimdiff
[difftool]
prompt = false
[difftool "nvimdiff"]
cmd = "nvim -d -u ~/.config/nvim/init.vim \"$LOCAL\" \"$REMOTE\""
[user]
name = Martin Pander
email = m@p.de
[alias]
st = status
ci = commit
co = checkout
br = branch
pl = pull
ps = push
mno = merge --no-ff
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
[push]
default = matching
[init]
templatedir = ~/.git_template