- config/git/gitconfig: real name, email, and SSH signing key - config/shell/zshrc: fix typo 'powerlevel10zsh' → 'powerlevel10k' - config/systemd/bw-ssh-keys.service: depend on graphical-session instead of network (ssh-agent starts with session); add explicit PATH so bw and jq are found; add RemainAfterExit=yes (avoids restart loop on oneshot services)
50 lines
886 B
Plaintext
Executable File
50 lines
886 B
Plaintext
Executable File
[user]
|
|
name = Julian Prester
|
|
email = hi@julianprester.com
|
|
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO14cVPAkygA4OIMmQ1PiBBQ9mQ+nY5n7XKJA0jD9ZOl github@julianprester.com
|
|
[init]
|
|
defaultBranch = main
|
|
[credential "https://git.julianprester.com"]
|
|
provider = generic
|
|
[core]
|
|
compression = 0
|
|
excludesfile = ~/.gitignore
|
|
editor = nano
|
|
[column]
|
|
ui = auto
|
|
[branch]
|
|
sort = -committerdate
|
|
[tag]
|
|
sort = version:refname
|
|
[diff]
|
|
algorithm = histogram
|
|
colorMoved = plain
|
|
mnemonicPrefix = true
|
|
renames = true
|
|
[push]
|
|
default = simple
|
|
autoSetupRemote = true
|
|
followTags = true
|
|
[pull]
|
|
rebase = true
|
|
[fetch]
|
|
prune = true
|
|
pruneTags = true
|
|
all = true
|
|
[help]
|
|
autocorrect = prompt
|
|
[commit]
|
|
verbose = true
|
|
gpgsign = true
|
|
[rerere]
|
|
enabled = true
|
|
autoupdate = true
|
|
[rebase]
|
|
autoSquash = true
|
|
autoStash = true
|
|
updateRefs = true
|
|
[merge]
|
|
conflictstyle = zdiff3
|
|
[gpg]
|
|
format = ssh
|