[core]
	autocrlf = input
	editor = nvim
	pager = diffr --colors refine-added:none:background:0x33,0x66,0x33:bold --colors added:none:background:0x33,0x44,0x33 --colors refine-removed:none:background:0x66,0x33,0x33:bold --colors removed:none:background:0x44,0x33,0x33 | less --RAW-CONTROL-CHARS --quit-on-intr
[interactive]
	diffFilter = diffr --colors refine-added:none:background:0x33,0x66,0x33:bold --colors added:none:background:0x33,0x44,0x33 --colors refine-removed:none:background:0x66,0x33,0x33:bold --colors removed:none:background:0x44,0x33,0x33
[submodule]
	recurse = true
[rerere]
	enabled = true
# Accelerate packing by automatically determining thread count
[pack]
	threads = 0

[pull]
	ff = only
[checkout]
	defaultRemote = origin

[diff]
	tool = nvim
	submodule = log
[merge]
	tool = nvim
[mergetool "nvim"]
	cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
	prompt = false
[difftool "nvim"]
	cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""

# Automatically push to branch with matching name
[push]
	default = current
# Disable pagination for branch commmand by default
[pager]
	branch = false
[grep]
	lineNumber = 1

[color "status"]
	added = green
	changed = yellow
	untracked = magenta

[user]
	email = 27jf@pm.me
	name = xerus2000

[mailmap]
	file = /home/janek/.config/yadm/.mailmap

[http]
	lowSpeedLimit = 1000
	lowSpeedTime = 3

[url "ssh://github.com/"]
	pushInsteadOf = https://github.com/

[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true

[alias]
	# GET INFO
	st = status --short --branch --show-stash
	stv = --paginate status -v
	stvv = --paginate status -vv

	r = remote -v
	b = branch -vv
	ba = b -a

	ref = reflog show --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset'
	rev = rev-parse --short
	head = rev-parse --short HEAD
	root = rev-parse --show-toplevel
	dir = rev-parse --git-dir
	curbranch = symbolic-ref --short HEAD
	upstream = !git rev-parse --abbrev-ref --symbolic-full-name @{upstream} || git rev-parse --abbrev-ref --symbolic-full-name @{push} || echo origin/$(git curbranch)
	#dir = !git root | sed 's/$/\\/.git/' | grep --color=never "/" # grep ensures a proper exit status on fail

	lg = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --graph
	lo = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --no-merges
	ln = !git --no-pager lo -5
	my = lo --author [Jj]anek
	standup = lo --since yesterday --author [Jj]anek --all
	co-authors = !git log | grep -i Co-Authored | awk '!a[$0]++'
	when = git for-each-ref --sort=committerdate --format='%(refname:short) * %(authorname) * %(committerdate:relative)' refs/remotes/ # List all branches with their last updates

	d = diff
	dw = diff --color-words
	dc = diff --color-words="[^[:space:]]|([[:alnum:]]|UTF_8_GUARD)+"

	# MODIFY

	# Local Changes
	a = add -u
	aa = add -u .
	ap = add -p
	c = commit -v
	co = checkout
	cb = checkout -b

	cp = cherry-pick
	rb = rebase
	rbc = rebase --continue

	sta = stash
	stl = stash list
	sts = stash show -v
	stp = stash pop
	std = stash drop

	rh = reset HEAD~
	rs = reset --keep
	ru = reset --keep @{upstream}
	unstage = reset HEAD --

	format-head = !git stash && git-clang-format HEAD~ && git commit -a --amend --no-edit && git stash pop

	# Housekeeping
	gcr = !git gc && git repack -a -d
	sup = !git branch --set-upstream-to @{push}

	# Update from remote
	f = fetch
	fa = fetch --all
	fs = !git fetch && git st
	lu = !git pull --rebase upstream ${1:-$(git curbranch)}

	rg = rmgonebranches
	sm = submodule update --init --recursive

	# Change remote
	luu = !git pull upstream $(git curbranch) && git push --no-verify
	p = push
	pu = push -u
	pf = push --force-with-lease
	cap = !git commit --all --amend --no-edit && git push --force-with-lease

	# COMMIT SHORTHANDS
	cme = commit -v --edit --message
	# yadm
	cgit    = !yadm cme "config/git:"   -- $XDG_CONFIG_HOME/git $CONFIG_SHELLS/git $HOME/.local/bin/git-*
	cvim    = !yadm cme "config/nvim:"  -- $XDG_CONFIG_HOME/nvim/init*
	cshell  = !yadm cme "config/shell:" -- $CONFIG_SHELLS
	cbin    = !yadm cme "bin:"          -- $HOME/.local/bin/scripts/

	# data
	journal = !git cme "notes/journal:" -- $(git root)/2-standards/notes/journal
	note = !git cme "notes:" -- $(git root)/2-standards/notes
	write = !git cme "writings:" -- $(git root)/2-standards/writing