-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
57 lines (57 loc) · 1.15 KB
/
.gitconfig
File metadata and controls
57 lines (57 loc) · 1.15 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
[add.interactive]
useBuiltin = false # required for git 2.37.0
[alias]
next = stack next
prev = stack previous
reword = stack reword
amend = stack amend
sync = stack sync
run = stack run
[column]
ui = auto
[core]
pager = delta
editor = nvim
[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)
[diff]
algorithm = histogram
colorMoved = default
mnemonicPrefix = true
renames = true
[fetch]
prune = true
pruneTags = true
all = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[help]
autocorrect = prompt
[init]
defaultBranch = main
[interactive]
diffFilter = delta --color-only
[merge]
conflictstyle = zdiff3
[pull]
rebase = true
[push]
default = simple
autoSetupRemote = true
followTags = true
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
[rerere]
enabled = true
autoupdate = true
[tag]
sort = version:refname
[user]
name = samshadwell
email = git@samshadwell.com