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"

View File

@ -1,3 +1,5 @@
{:logseq-bujo-theme {:version "1.3.5", :repo "stdword/logseq-bujo-theme", :effect false, :theme true}
:logseq-bullet-threading {:version "v1.1.4", :repo "pengx17/logseq-plugin-bullet-threading", :effect false, :theme false}
:logseq-markdown-table {:version "v1.8.1", :repo "haydenull/logseq-plugin-markdown-table", :effect false, :theme false}}
:logseq-markdown-table {:version "v1.8.1", :repo "haydenull/logseq-plugin-markdown-table", :effect false, :theme false}
:logseq-pdf-export-plugin {:version "2.2.10", :repo "sawhney17/logseq-pdf-export", :effect true, :theme false}
:logseq-pdf-extract {:version "0.1.1", :repo "e-zz/logseq-pdf-extract", :effect true, :theme false}}

View File

@ -30,11 +30,11 @@
"atlascode.bitbucket.enabled": false,
"atlascode.jira.statusbar.showProduct": true,
"atlascode.jira.statusbar.showUser": true,
"workbench.colorTheme": "SynthWave '84",
"workbench.colorTheme": "Catppuccin Macchiato",
"workbench.iconTheme": "material-icon-theme",
"projectManager.git.baseFolders": [
"~/private/",
"~/work/"
"~/src/work/"
],
"debug.console.fontFamily": "MesloLGS NF",
"terminal.integrated.fontFamily": "MesloLGS NF",
@ -42,10 +42,8 @@
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlab.aiAssistedCodeSuggestions.enabled": false,
"gitlens.showWelcomeOnInstall": false,
"gitlens.showWhatsNewAfterUpgrades": false,
"projectManager.groupList": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
@ -70,5 +68,28 @@
"plaintext": false,
"markdown": true,
"scminput": false
},
"go.toolsManagement.autoUpdate": true,
"files.associations": {
"*.tm.hcl": "terramate"
},
"vscode-home-assistant.hostUrl": "http://192.168.80.87:8123",
"vscode-home-assistant.longLivedAccessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI2ZmY1ZmFiNWZmODc0YWVkOWU4NGQ1NjQ3YWUyZjA3ZiIsImlhdCI6MTcyMTk5MjE3NiwiZXhwIjoyMDM3MzUyMTc2fQ.zwfXV3qO-ACE8NFnspDlq85AQLoCZqvX42h95O7_BgU",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"projectManager.groupList": true,
"projectManager.removeCurrentProjectFromList": false,
"workbench.productIconTheme": "macos-modern",
"gitlab.duoCodeSuggestions.enabled": false,
"git.confirmSync": false,
"[shellscript]": {
"editor.defaultFormatter": "shakram02.bash-beautify"
}
}

View File

@ -17,7 +17,7 @@ case "$1" in
up)
# Start the VPN connection
VPN_PASSWORD=$(get_vpn_password)
echo $VPN_PASSWORD | sudo openconnect --passwd-on-stdin --config $HOME/.config/openconnect/intersport.de.conf
echo $VPN_PASSWORD | sudo openconnect --passwd-on-stdin --config $HOME/.config/openconnect/intersport.de.conf --servercert pin-sha256:ubN/pQqq4oHxnixTswjOlbVYf5qYf6DhbsuCLYndbvw=
#> /dev/null 2>/dev/null
;;
down)

View File

@ -1,6 +1,3 @@
Host git.beisel.it
User git
IdentityFile ~/.ssh/id_ed25519-private
Host gitlab.com
User git
@ -11,3 +8,21 @@ Host *.intersport.de
IdentityFile ~/.ssh/id_ed25519-work
AddKeysToAgent yes
Host git.beisel.it
User git
IdentityFile ~/.ssh/id_ed25519-private
Host *.beisel.it 95.216.116.5
IdentityFile ~/.ssh/id_ed25519-private
Host github-private
HostName github.com
User git
IdentityFile ~/.ssh/id_ed25519-private
Host github-work
HostName github.com
User git
IdentityFile ~/.ssh/id_ed25519-work