-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
53 lines (51 loc) · 1.4 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
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = Cellan Hall
email = [email protected]
[init]
defaultBranch = main
[fetch]
prune = true
[hub]
protocol = ssh
[github]
user = Ce11an
[core]
excludesfile = ~/.gitignore_global
editor = vim
autocrlf = false
eol = lf
[color]
diff = auto
status = auto
branch = auto
ui = true
[pull]
ff = only
[merge]
conflictstyle = diff3
[rebase]
autosquash = true
[diff]
colorMoved = true
algorithm = histogram
[interactive]
diffFilter = delta --color-only
[delta]
side-by-side = true
line-numbers = true
minus-style = syntax "#3f2d3d"
minus-non-emph-style = syntax "#3f2d3d"
minus-emph-style = syntax "#763842"
minus-empty-line-marker-style = syntax "#3f2d3d"
line-numbers-minus-style = "#914c54"
plus-style = syntax "#283b4d"
plus-non-emph-style = syntax "#283b4d"
plus-emph-style = syntax "#316172"
plus-empty-line-marker-style = syntax "#283b4d"
line-numbers-plus-style = "#449dab"
line-numbers-zero-style = "#3b4261"