31 lines
415 B
Plaintext
31 lines
415 B
Plaintext
# vim: ft=gitconfig
|
|
[include]
|
|
path = user_email
|
|
|
|
[user]
|
|
name = Evie Litherland-Smith
|
|
|
|
[core]
|
|
editor = nvim
|
|
autocrlf = input
|
|
[pull]
|
|
rebase = false
|
|
[color]
|
|
ui = true
|
|
[diff]
|
|
tool = nvimdiff
|
|
algorithm = minimal
|
|
[difftool]
|
|
prompt = no
|
|
trustExitCode = yes
|
|
[alias]
|
|
dt = difftool
|
|
mt = mergetool
|
|
[merge]
|
|
tool = nvimdiff2
|
|
[mergetool]
|
|
keepBackup = yes
|
|
prompt = no
|
|
[init]
|
|
defaultBranch = main
|