-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitconfig
104 lines (86 loc) · 2.59 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
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
95
96
97
98
99
100
101
102
103
104
[include]
path = ~/.gitconfig.private
[core]
excludesfile = ~/.gitignore
pager = delta
[push]
default = current
[alias]
ll = log --format=fuller --graph --decorate
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
wdiff = diff --color-words
[hub]
protocol = https
[url "https://github.com"]
insteadOf = git://github.com
[pull]
ff = only
[fetch]
prune = true
[gpg]
program = gpg
[commit]
gpgsign = true
verbose = true
template = /Users/ericboehs/.git-commit-template.txt
[credential]
helper = cache --timeout=600
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[init]
defaultBranch = master
[blame]
coloring = highlightRecent
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = mellow-barbet
navigate = true
show-diff-stats = true
[delta "interactive"]
keep-plus-minus-markers = false
[delta "decorations"]
commit-decoration-style = blue ol
commit-style = raw
file-style = omit
hunk-header-decoration-style = "#3e3e43" box ul
hunk-header-file-style = red
hunk-header-line-number-style = "green"
hunk-header-style = file line-number syntax
[delta "mellow-barbet"]
# author: https://github.com/kvrohit
# To configure terminal colors see https://github.com/kvrohit/mellow.nvim#terminals
dark = true
syntax-theme = base16
line-numbers = true
side-by-side = true
file-style = brightwhite
file-decoration-style = none
file-added-label = [+]
file-copied-label = [==]
file-modified-label = [*]
file-removed-label = [-]
file-renamed-label = [->]
hunk-header-decoration-style = "#3e3e43" box ul
plus-style = brightgreen black
plus-emph-style = black green
minus-style = brightred black
minus-emph-style = black red
line-numbers-minus-style = brightred
line-numbers-plus-style = brightgreen
line-numbers-left-style = "#3e3e43"
line-numbers-right-style = "#3e3e43"
line-numbers-zero-style = "#57575f"
zero-style = syntax
whitespace-error-style = black bold
blame-code-style = syntax
blame-palette = "#161617" "#1b1b1d" "#2a2a2d" "#3e3e43"
merge-conflict-begin-symbol = ~
merge-conflict-end-symbol = ~
merge-conflict-ours-diff-header-style = yellow bold
merge-conflict-ours-diff-header-decoration-style = "#3e3e43" box
merge-conflict-theirs-diff-header-style = yellow bold
merge-conflict-theirs-diff-header-decoration-style = "#3e3e43" box