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