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:
parent
6c198f3468
commit
1cb3648eab
|
@ -1,8 +1,8 @@
|
||||||
# ~/.gitconfig
|
# ~/.gitconfig
|
||||||
|
|
||||||
[includeIf "gitdir:~/work/"]
|
[includeIf "gitdir:~/src/work/"]
|
||||||
path = .gitconfig-work
|
path = .gitconfig-work
|
||||||
[includeIf "gitdir:~/private/"]
|
[includeIf "gitdir:~/src/private/"]
|
||||||
path = .gitconfig-private
|
path = .gitconfig-private
|
||||||
|
|
||||||
# Special Cases
|
# Special Cases
|
||||||
|
@ -20,3 +20,8 @@
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
[push]
|
[push]
|
||||||
autoSetupRemote = true
|
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"
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
{:logseq-bujo-theme {:version "1.3.5", :repo "stdword/logseq-bujo-theme", :effect false, :theme true}
|
{: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-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}}
|
||||||
|
|
|
@ -30,11 +30,11 @@
|
||||||
"atlascode.bitbucket.enabled": false,
|
"atlascode.bitbucket.enabled": false,
|
||||||
"atlascode.jira.statusbar.showProduct": true,
|
"atlascode.jira.statusbar.showProduct": true,
|
||||||
"atlascode.jira.statusbar.showUser": true,
|
"atlascode.jira.statusbar.showUser": true,
|
||||||
"workbench.colorTheme": "SynthWave '84",
|
"workbench.colorTheme": "Catppuccin Macchiato",
|
||||||
"workbench.iconTheme": "material-icon-theme",
|
"workbench.iconTheme": "material-icon-theme",
|
||||||
"projectManager.git.baseFolders": [
|
"projectManager.git.baseFolders": [
|
||||||
"~/private/",
|
"~/private/",
|
||||||
"~/work/"
|
"~/src/work/"
|
||||||
],
|
],
|
||||||
"debug.console.fontFamily": "MesloLGS NF",
|
"debug.console.fontFamily": "MesloLGS NF",
|
||||||
"terminal.integrated.fontFamily": "MesloLGS NF",
|
"terminal.integrated.fontFamily": "MesloLGS NF",
|
||||||
|
@ -42,10 +42,8 @@
|
||||||
"[typescript]": {
|
"[typescript]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"gitlab.aiAssistedCodeSuggestions.enabled": false,
|
|
||||||
"gitlens.showWelcomeOnInstall": false,
|
"gitlens.showWelcomeOnInstall": false,
|
||||||
"gitlens.showWhatsNewAfterUpgrades": false,
|
"gitlens.showWhatsNewAfterUpgrades": false,
|
||||||
"projectManager.groupList": true,
|
|
||||||
"[json]": {
|
"[json]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
|
@ -70,5 +68,28 @@
|
||||||
"plaintext": false,
|
"plaintext": false,
|
||||||
"markdown": true,
|
"markdown": true,
|
||||||
"scminput": false
|
"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"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -17,7 +17,7 @@ case "$1" in
|
||||||
up)
|
up)
|
||||||
# Start the VPN connection
|
# Start the VPN connection
|
||||||
VPN_PASSWORD=$(get_vpn_password)
|
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
|
#> /dev/null 2>/dev/null
|
||||||
;;
|
;;
|
||||||
down)
|
down)
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
Host git.beisel.it
|
|
||||||
User git
|
|
||||||
IdentityFile ~/.ssh/id_ed25519-private
|
|
||||||
|
|
||||||
Host gitlab.com
|
Host gitlab.com
|
||||||
User git
|
User git
|
||||||
|
@ -11,3 +8,21 @@ Host *.intersport.de
|
||||||
IdentityFile ~/.ssh/id_ed25519-work
|
IdentityFile ~/.ssh/id_ed25519-work
|
||||||
|
|
||||||
AddKeysToAgent yes
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue