main dots / config / .gitconfig
xxwhirlpool  ·  2026-06-02
 1[user]
 2	name = xxwhirlpool
 3	email = witnesslachesis@disroot.org
 4	signingkey = /home/kat/.ssh/id_rsa.pub
 5[init]
 6	defaultBranch = main
 7[gpg]
 8	format = ssh
 9[commit]
10	gpgsign = true
11	verbose = true
12[tag]
13	gpgsign = true
14[core]
15	pager = "batcat --paging=always"
16	autocrlf = input
17	excludesFile = ~/.gitignore
18	editor = micro
19[rerere]
20	enabled = true
21	autoUpdate = true
22[pull]
23	ff = only
24[push]
25	autoSetupRemote = true
26[maintenance]
27	auto = true
28	strategy = incremental
29[alias]
30    graph = log --all --graph --decorate --oneline
31[help]
32	autocorrect = prompt
33[sendemail]
34	smtpserver = disroot.org
35	smtpuser = witnesslachesis@disroot.org
36	smtpencryption = tls
37	smtpserverport = 587
38[credential]
39	username = witnesslachesis
40	helper = "!f() { test \"$1\" = get && echo \"password=$(pass personal/witnesslachesis_disroot)\"; }; f"