Last active
June 25, 2026 21:32
-
-
Save demarchenac/56773ede550dfc8cb6d6f159d492adaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // --- Theming --- | |
| "workbench.colorTheme": "Night Owl", | |
| "workbench.iconTheme": "symbols", | |
| // --- Editor --- | |
| "editor.fontFamily": "\"FiraCode Nerd Font Mono\", Consolas, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "biomejs.biome", | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports.biome": "explicit", | |
| "source.fixAll.biome": "explicit" | |
| }, | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.minimap.enabled": false, | |
| "editor.stickyScroll.enabled": true, | |
| "editor.linkedEditing": true, | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.smoothScrolling": true, | |
| "editor.wordWrap": "on", | |
| // --- Terminal --- | |
| "terminal.integrated.fontFamily": "\"FiraCode Nerd Font Mono\"", | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.defaultProfile.windows": "PowerShell", | |
| // --- Workbench --- | |
| "workbench.startupEditor": "none", | |
| "workbench.tree.indent": 16, | |
| // --- Files --- | |
| "files.trimTrailingWhitespace": true, | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| "files.autoSave": "onFocusChange", | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/.vscode": true, | |
| "**/.next": true, | |
| "**/node_modules": true, | |
| "next-env.d.ts": true | |
| }, | |
| // --- Search --- | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/.next": true, | |
| "**/dist": true, | |
| "**/build": true, | |
| "**/.git": true | |
| }, | |
| // --- JSONC --- | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "gitlens.ai.model": "vscode", | |
| "gitlens.ai.vscode.model": "copilot:gpt-4o-mini", | |
| "chat.viewSessions.orientation": "stacked", | |
| "git.decorations.enabled": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment