initial commit

This commit is contained in:
2025-08-12 23:07:17 -04:00
commit fa132af00a
8 changed files with 823 additions and 0 deletions

31
gitconfig Normal file
View File

@@ -0,0 +1,31 @@
# vim:filetype=gitconfig
[diff]
tool = vimdiff
algorithm = histogram
colorMoved = 1
[difftool]
prompt = no
[core]
excludesfile = ~/dotfiles/globalgitignore
editor = vim
[pull]
ff = only
[init]
defaultBranch = main
[alias]
co = checkout
br = branch
st = status
dt = difftool --tool vimtabdiff --dir-diff
[difftool "vimtabdiff"]
cmd = ~/bin/vimtabdiff.py $LOCAL $REMOTE
[rerere]
enabled = true
[column]
ui = auto
[help]
autocorrect = prompt
[receive]
denyCurrentBranch = updateInstead
[push]
autoSetupRemote = true