dotfiles/git/.gitconfig

17 lines
487 B
INI
Raw Normal View History

[user]
email = gabevenberg@gmail.com
2023-02-16 14:16:32 -06:00
name = Gabe Venberg
[alias]
hist = log --graph --date-order --date=short --pretty=format:'%C(auto)%h%d %C(reset)%s %C(bold blue)%ce %C(reset)%C(green)%cr (%cd)'
2023-06-07 10:57:43 -05:00
graph = log --graph --topo-order --all --pretty=format:'%C(auto)%h %C(cyan)%an %C(blue)%ar %C(auto)%d %s'
2022-02-07 13:35:51 -06:00
[init]
defaultBranch = main
2023-02-16 04:46:17 -06:00
[push]
autoSetupRemote = true
[difftool]
prompt = false
[diff]
tool = nvimdiff
[difftool "nvimdiff"]
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""