dotfiles/git/.gitconfig

47 lines
858 B
INI
Raw Normal View History

2016-03-07 17:31:28 +01:00
[user]
name = Sanchayan Maity
email = maitysanchayan@gmail.com
login = sanchayanmaity
2016-03-07 17:31:28 +01:00
[core]
editor = "nvim"
pager = delta --dark
excludesfile = ~/.config/git/ignore
2016-03-07 17:31:28 +01:00
[color]
ui = true
2016-03-07 17:31:28 +01:00
[sendemail]
smtpserver = /usr/bin/msmtp
[http]
sslVerify = false
[fetch]
prune = true
2020-10-05 14:28:25 +02:00
pruneTags = true
[diff]
colorMoved = default
[merge]
tool = diffconflicts
conflictstyle = diff3
ff = only
[mergetool]
prompt = false
keepBackup = false
[mergetool "diffconflicts"]
cmd = 'nvim -c DiffConflicts "$MERGED" "$BASE" "$LOCAL" "$REMOTE"'
trustExitCode = true
[rebase]
autosquash = true
autoStash = true
[commit]
verbose = true
[pull]
rebase = false
[push]
followTags = true
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
features = line-numbers decorations
whitespace-error-style = 22 reverse
[advice]
addEmptyPathspec = false