-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgitconfig
More file actions
94 lines (76 loc) · 1.69 KB
/
gitconfig
File metadata and controls
94 lines (76 loc) · 1.69 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[alias]
ctags = !.git/hooks/ctags
up = pull --rebase --autostash
[color]
ui = auto
[color "status"]
branch = bold default
localBranch = bold default
remoteBranch = bold blue
[core]
excludesfile = ~/.gitignore
editor = nvim
pager = cat
attributesfile = ~/.gitattributes
[pager]
difftool = false
diff = false
branch = false
commit = false
; [credential]
; helper = osxkeychain
[delta]
line-numbers = true
line-numbers-minus-style = "red"
line-numbers-plus-style = "green"
line-numbers-zero-style = "brightred"
file-style = "bold blue"
syntax-theme = "Solarized (dark)"
[difftool]
prompt = 1
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[github]
user = alexanderjeurissen
[merge]
tool = nvim
conflictstyle = diff3
[mergetool "nvim"]
cmd = nvim -d -u ~/.config/nvim/init.lua $BASE $REMOTE $LOCAL $MERGED -c '$wincmd w' -c 'wincmd J' -c '$wincmd w' -c 'wincmd k'
[mergetool "nvr"]
cmd = nvr -cc tabnew -s -d $LOCAL $BASE $REMOTE $MERGED -c 'wincmd J | wincmd ='
[mergetool]
prompt = 0
[pull]
rebase = false
[push]
default = current
autoSetupRemote = true
[user]
name = Alexander Jeurissen
email = alexander@jeurissen.email
[gitlab]
user = alexander@hackerone.com
email = alexander@hackerone.com
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[color "diff"]
meta = bold blue
frag = magenta bold
func = 146 bold
;commit = blue bold
old = red bold
new = green bold
whitespace = red reverse
[rerere]
autoupdate = true
[http]
sslVerify = false
[init]
defaultBranch = main