-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
64 lines (56 loc) · 1.27 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
[alias]
a = add
aa = add -A
b = branch
ba = branch -a
c = commit -vm
ck = checkout
d = diff
s = status
cl = clone
cld = clone --depth 1
ud = reset HEAD~1
p = push
pl = pull
[user]
email = [email protected]
name = Martinits
[core]
pager = delta
[include]
path = /home/martinit/.config/delta/themes.gitconfig
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal)
#side-by-side = true
line-numbers = true
features = woolly-mammoth
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
# [core]
# pager = diff-so-fancy | less --tabs=4 -RFX
# [interactive]
# diffFilter = diff-so-fancy --patch
# [color]
# ui = true
# [color "diff-highlight"]
# oldNormal = red bold
# oldHighlight = red bold 52
# newNormal = green bold
# newHighlight = green bold 22
# [color "diff"]
# meta = 11
# frag = magenta bold
# func = 146 bold
# commit = yellow bold
# old = red bold
# new = green bold
# whitespace = red reverse
[pull]
rebase = true
[rerere]
enabled = true