From a0205f99587dc342fd2d76f7ec3dffc760f162b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 28 Aug 2026 20:38:20 +0200 Subject: [PATCH] chore: remove tracked .vscode dir Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_017T2GTsXrpJizZ6HnwEcid4 --- .gitignore | 3 --- .vscode/keybindings.json | 10 --------- .vscode/settings.json | 47 ---------------------------------------- 3 files changed, 60 deletions(-) delete mode 100644 .vscode/keybindings.json delete mode 100755 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 374e7f9..d0d8f02 100755 --- a/.gitignore +++ b/.gitignore @@ -24,9 +24,6 @@ !bin/stacks !bin/README.md !bin/setup -!.vscode/ -!.vscode/settings.json -!.vscode/keybindings.json !.config/ !.config/yazi/ !.config/yazi/yazi.toml diff --git a/.vscode/keybindings.json b/.vscode/keybindings.json deleted file mode 100644 index 449ffe9..0000000 --- a/.vscode/keybindings.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "key": "shift+enter", - "command": "workbench.action.terminal.sendSequence", - "args": { - "text": "\u001b\r" - }, - "when": "terminalFocus" - } -] \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100755 index c7da86e..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // ------------------------------------------------------------------------- - // Nord colorscheme applied via settings — no extension required. - // Source: https://github.com/arcticicestudio/nord-visual-studio-code - // Polar Night: #2E3440 #3B4252 #434C5E #4C566A - // Snow Storm: #D8DEE9 #E5E9F0 #ECEFF4 - // Frost: #8FBCBB #88C0D0 #81A1C1 #5E81AC - // Aurora: #BF616A #D08770 #EBCB8B #A3BE8C #B48EAD - // ------------------------------------------------------------------------- - "workbench.colorTheme": "Catppuccin Frappé", - "editor.semanticHighlighting.enabled": true, - // ------------------------------------------------------------------------- - // Editor - // ------------------------------------------------------------------------- - "workbench.externalBrowser": "chrome", - "explorer.confirmDragAndDrop": false, - "explorer.confirmPasteNative": false, - "editor.formatOnSave": false, - "git.confirmSync": false, - "git.repositoryScanMaxDepth": 2, - "remote.autoForwardPortsSource": "hybrid", - // ------------------------------------------------------------------------- - // Terminal - // ------------------------------------------------------------------------- - "terminal.integrated.fontFamily": "MesloLGLDZ Nerd Font Mono", - "terminal.integrated.sendKeybindingsToShell": true, - "terminal.integrated.defaultProfile.linux": "zsh (login)", - "terminal.integrated.profiles.linux": { - "bash": { - "path": "bash", - "icon": "terminal-bash" - }, - "zsh": { - "path": "zsh" - }, - "zsh (login)": { - "path": "zsh", - "args": [ - "-l" - ] - }, - "pwsh": { - "path": "pwsh", - "icon": "terminal-powershell" - } - } -}