-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
87 lines (79 loc) · 1.88 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
[user]
name = Antoine DECHAUME
email = <>
[color]
status = auto
branch = auto
diff = auto
ui = auto
[core]
excludesfile = ~/.gitignore
autocrlf = input
editor = nvim
symlinks = true
[gui]
# fontdiff = -family Monospace -size 10 -weight normal -slant roman -underline 0 -overstrike 0
warndetachedcommit = true
# fontui = -family gothic -size 10 -weight normal -slant roman -underline 0 -overstrike 0
spellingdictionary = none
tabsize = 4
[http]
sslVerify = true
[svn]
rmdir = true
[url "http://"]
insteadOf = git://
[push]
default = matching
[credential]
helper = store --file ~/.gitcredentials
[rerere]
enabled = true
# for git-delta
# [pager]
# diff = delta
# log = delta
# reflog = delta
# show = delta
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = decorations
syntax-theme = Solarized (dark)
# line-numbers = true
# side-by-side = true
wrap-max-lines = unlimited
[delta "interactive"]
keep-plus-minus-markers = false
[delta "decorations"]
commit-decoration-style = blue ol
commit-style = raw
file-style = omit
# hunk-header-decoration-style = blue box
# hunk-header-file-style = red
# hunk-header-line-number-style = "#067a00"
# hunk-header-style = file line-number syntaxautoUpdate = true
[difftool]
prompt = false
# Diff with meld
[diff]
tool = meld
[difftool "meld"]
cmd = meld "$LOCAL" "$REMOTE"
[merge]
tool = meld
[mergetool "meld"]
cmd = meld "$LOCAL" "$MERGED" "$REMOTE" --output "$MERGED"
# cmd = meld "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"
# Diff with difftastic
[diff]
external = difft
# tool = difftastic
[difftool "difftastic"]
cmd = difft "$LOCAL" "$REMOTE"
[pager]
difftool = true
# diff = difft
# log = difft
# reflog = difft
# show = difft