dotfiles/git/.gitconfig

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.2 KiB
INI
Raw Normal View History

2016-03-07 17:31:28 +01:00
[user]
name = Sanchayan Maity
2021-02-11 18:49:38 +01:00
email = sanchayan@sanchayanmaity.net
login = sanchayanmaity
2016-03-07 17:31:28 +01:00
[core]
editor = nvim
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]
tool = nvimdiff
[difftool]
prompt = false
trustExitCode = true
[difftool "nvimdiff"]
cmd = nvim -R -d $LOCAL $REMOTE
[difftool "difftastic"]
cmd = difft $LOCAL $REMOTE
[difftool "kitty"]
cmd = kitty +kitten diff $LOCAL $REMOTE
[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]
default = nothing
[advice]
addEmptyPathspec = false
2021-02-02 05:09:23 +01:00
[init]
defaultBranch = master
[log]
follow = true
2022-04-12 14:15:02 +02:00
[blame]
# Mark any lines that have had a commit skipped using --ignore-rev with a `?`
markIgnoredLines = true
# Mark any lines that were added in a skipped commit and can not be attributed with a `*`
markUnblamableLines = true