Initial commit

This commit is contained in:
Martin Pander
2020-09-10 09:54:18 +02:00
commit 03c7bc3c59
50 changed files with 7816 additions and 0 deletions

32
config/gitconfig Normal file
View File

@ -0,0 +1,32 @@
[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 = martin.pander@knowtion.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