-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
65 lines (48 loc) · 1.17 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
65
; main settings
[user]
email = [email protected]
name = Josh Reichardt
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICjYZD3N1Ej/1tA/pohuhJpm03Qv+yILLVdtr4uQDkW9
[fetch]
prune = true
[push]
default = simple
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[mergetool "code"]
cmd = code --wait --merge $REMOTE $LOCAL $BASE $MERGED
;[credential]
; helper = osxkeychain
; commit signing
[gpg]
format = ssh
; program = gpg2
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
[commit]
gpgsign = true
; better diffs
[diff]
noprefix = true
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
syntax-theme = Monokai Extended Bright
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
hunk-header-decoration-style = none
[delta "line-numbers"]
line-numbers-zero-style = black
line-numbers-left-style = black
line-numbers-right-style = black
line-numbers-minus-style = red
line-numbers-plus-style = green