-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
74 lines (57 loc) · 1.09 KB
/
dot_gitconfig.tmpl
File metadata and controls
74 lines (57 loc) · 1.09 KB
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
[column]
ui = auto
[branch]
sort = -committerdate
[init]
defaultBranch = develop
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[push]
default = simple
autoSetupRemote = true
followTags = true
[fetch]
prune = true
pruneTags = true
all = true
[user]
name = {{ .git.name }}
email = {{ .git.email }}
signingkey = {{ .git.signingkey }}
[tag]
gpgSign = true
sort = version:refname
[core]
editor = nvim
pager = delta
[commit]
verbose = true
gpgsign = true
[help]
autocorrect = prompt
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
[rerere]
enabled = true
autoupdate = true
[delta]
navigate = true # use n and N to move between diff sections
dark = true # or light = true, or omit for auto-detection
side-by-side = true
line-numbers = true
[interactive]
diffFilter = delta --color-only
[merge]
conflictstyle = zdiff3
[lfs]
allowincompletepush = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true