summaryrefslogtreecommitdiff
path: root/git/dot-gitconfig
blob: 73c49373e700cc9c8b420731911c5c0c09c2ed11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[user]
	name = Michal Idziorek
        email = m.i@gmx.at

[merge]
    tool = vimdiff
    conflictstyle = diff3

[mergetool]
  prompt = true

[mergetool "vimdiff"]
  cmd = nvim -d $BASE $LOCAL $REMOTE $MERGED -c '$wincmd w' -c '$wincmd w' -c '$wincmd w' -c '$wincmd J'
    
[diff]
    tool = nvimdiff

[difftool "nvimdiff"]
    cmd = "/root/nvim.appimage -d $LOCAL $REMOTE"
    prompt = true

[pager]
    diff   = delta
    show   = delta
    log    = delta
    reflog = delta

[interactive]
    diffFilter = delta --color-only