52 lines
No EOL
800 B
Cheetah
52 lines
No EOL
800 B
Cheetah
[user]
|
|
email = {{ .email | quote }}
|
|
name = {{ .name | quote }}
|
|
|
|
[core]
|
|
editor = nvim
|
|
pager = delta
|
|
# Remove Carriage Returns
|
|
autocrlf = input
|
|
eol = lf
|
|
|
|
[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)
|
|
|
|
[merge]
|
|
conflictstyle = diff3
|
|
|
|
[diff]
|
|
colorMoved = default
|
|
mnemonicPrefix = true
|
|
renames = true
|
|
algorithm = patience
|
|
|
|
[pull]
|
|
rebase = merges
|
|
autoSetupRemote = true
|
|
default = simple
|
|
followTags = true
|
|
|
|
[apply]
|
|
whitespace = fix
|
|
|
|
[help]
|
|
#Automatically fix commands and run after 0.5s
|
|
autocorrect = 50
|
|
|
|
[safe]
|
|
directory = /
|
|
|
|
[rebase]
|
|
autostash = true
|
|
|
|
[log]
|
|
abbrevCommit = true
|
|
|
|
[rerere]
|
|
autoupdate = true
|
|
enabled = true |