Update .gitconfig

Update .logseq/config/plugins.edn
Update Library/Application Support/Code/User/settings.json
Update .local/bin/vpn
Update .ssh/config
This commit is contained in:
Florian Beisel
2024-09-27 20:49:21 +02:00
parent 6c198f3468
commit 1cb3648eab
5 changed files with 54 additions and 11 deletions

View File

@ -1,8 +1,8 @@
# ~/.gitconfig
[includeIf "gitdir:~/work/"]
[includeIf "gitdir:~/src/work/"]
path = .gitconfig-work
[includeIf "gitdir:~/private/"]
[includeIf "gitdir:~/src/private/"]
path = .gitconfig-private
# Special Cases
@ -20,3 +20,8 @@
autocrlf = input
[push]
autoSetupRemote = true
[init]
defaultBranch = main
[alias]
accept-ours = "!f() { git checkout --ours -- \"${@:-.}\"; git add -u \"${@:-.}\"; }; f"
accept-theirs = "!f() { git checkout --theirs -- \"${@:-.}\"; git add -u \"${@:-.}\"; }; f"