-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.gitconfig
49 lines (36 loc) · 1.4 KB
/
global.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
[init]
defaultBranch = main
[pull]
ff = only
[push]
default = simple
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[delta]
navigate = true # use n and N to move between diff sections
line-numbers = true
line-numbers-zero-style = "#3b4261"
minus-style = syntax "#4d1919"
minus-non-emph-style = syntax "#4d1919"
minus-emph-style = syntax "#713137"
minus-empty-line-marker-style = syntax "#4d1919"
line-numbers-minus-style = "#b2555b"
plus-style = syntax "#182f23"
plus-non-emph-style = syntax "#182f23"
plus-emph-style = syntax "#224e38"
plus-empty-line-marker-style = syntax "#182f23"
line-numbers-plus-style = "#3e8e66"
#colorblind friendly
; minus-style = syntax "#808000"
; minus-non-emph-style = syntax "#808000"
; minus-emph-style = syntax "#bab02c"
; minus-empty-line-marker-style = syntax "#808000"
; line-numbers-minus-style = "#bab02c"
# delta detects terminal colors automatically; set one of these to disable auto-detection
# dark = true
# light = true
# vim: ft=gitconfig ts=4 sts=4 sw=4 et