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" - } - } -}