X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/afc8c9e85bc5b6c672265f86242a94d8013133b2..f1669e803611c862ba1282802a240d383d36c645:/gitconfig?ds=sidebyside diff --git a/gitconfig b/gitconfig index 712e4df..08ed718 100644 --- a/gitconfig +++ b/gitconfig @@ -1,21 +1,34 @@ [user] - name = Ruben Beltran del Rio - email = ruben@unlimited.pizza - signingkey = B7C3495D98F27947 + name = Ruben Beltran del Rio + email = git@r.bdr.sh + signingkey = 85D81B97D96211C7 [sendemail] - smtpserver = smtp.fastmail.com - smtpuser = ruben@unlimited.pizza - smtpencryption = ssl - smtpserverport = 465 + smtpserver = smtp.fastmail.com + smtpuser = r@bdr.sh + smtpencryption = ssl + smtpserverport = 465 [core] - editor = nvim + pager = delta + editor = nvim [color] - diff = auto + diff = auto [push] - default = simple + default = simple + autoSetupRemote = true [pull] rebase = false [commit] - gpgsign = true + gpgsign = true [init] - defaultBranch = main + defaultBranch = main +[diff] + external = difft + tool = vimdiff + algorithm = histogram +[merge] + tool = nvim + conflictstyle = zdiff3 +[mergetool] + keepBackup = false +[mergetool "nvim"] + cmd = nvim -d $LOCAL $REMOTE $MERGED -c '$wincmd w' -c 'wincmd J'