-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
64 lines (64 loc) · 1.52 KB
/
.gitconfig
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[includeIf "gitdir:~/"]
path = .gitconfig-personal
[includeIf "gitdir:/directory/personal/projects/**"]
path = .gitconfig-personal
[includeIf "gitdir:/directory/work/projects/**"]
path = .gitconfig-work
[user]
name = Jacob E. Tuz Poot
[color]
ui = auto
status = auto
branch = auto
[diff]
tool = nvimdiff
[difftool "nvimdiff"]
path = nvim
[merge]
tool = fugitive
conflictstyle = diff3
prompt = false
[mergetool]
keepBackup = false
[mergetool "fugitive"]
cmd = nvim -f -c \"Gvdiffsplit!\" \"$MERGED\"
[credential]
helper = cache
[core]
editor = nvim
excludesFile = ~/.gitignore_global
[commit]
template = ~/.gitmessage.txt
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[gpg]
program = gpg2
[pull]
ff = only
[init]
defaultBranch = main
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = side-by-side line-numbers decorations
syntax-theme = tokyonight
; minus-style = red bold ul
; plus-style = green bold ul
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
hunk-header-decoration-style = cyan box ul
[delta "line-numbers"]
line-numbers-left-style = cyan
line-numbers-right-style = cyan
line-numbers-minus-style = 124
line-numbers-plus-style = 28