Files
dotfiles/.gitconfig
suda@sudacode.com 88f0d9938c update
2026-02-02 08:40:51 -08:00

40 lines
798 B
INI

; [includeIf "gitdir:~/.local/share/yadm/repo.git"]
; path = .gitconfig.submodules
[init]
defaultBranch = main
[push]
default = simple
autoSetupRemote = true
[diff]
algorithm = histogram
[merge]
conflictstyle = zdiff3
[pull]
rebase = true
[rebase]
autostash = true
autosquash = true
[fetch]
prune = true
[branch]
autosetuprebase = always
[core]
fsmonitor = true
untrackedCache = true
editor = nvim
pager = delta
[alias]
st = status
co = checkout
br = branch
lg = log --oneline --graph --decorate --all
fixup = commit --fixup
undo = reset --soft HEAD~1
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
dark = true # or light = true, or omit for auto-detection
[user]
name = suda@sudacode.com