Created
May 17, 2025 06:54
-
-
Save dikaio/5f712e8baac44e2ff691dd28098c1e05 to your computer and use it in GitHub Desktop.
VS Code Settings
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
| { | |
| "breadcrumbs.enabled": true, | |
| "colorInfo.languages": [ | |
| { | |
| "selector": "css", | |
| "colors": "css" | |
| }, | |
| { | |
| "selector": "sass", | |
| "colors": "css" | |
| }, | |
| { | |
| "selector": "scss", | |
| "colors": "css" | |
| }, | |
| { | |
| "selector": "less", | |
| "colors": "css" | |
| } | |
| ], | |
| "editor.acceptSuggestionOnEnter": "on", | |
| "editor.accessibilitySupport": "off", | |
| "editor.codeActionsOnSave": { | |
| "quickfix.biome": "explicit", | |
| "source.organizeImports.biome": "explicit" | |
| }, | |
| "editor.colorDecoratorsLimit": 500, | |
| "editor.cursorBlinking": "smooth", | |
| "editor.cursorSmoothCaretAnimation": "off", | |
| "editor.cursorStyle": "underline", | |
| "editor.defaultFormatter": "biomejs.biome", | |
| "editor.detectIndentation": false, | |
| "editor.folding": true, | |
| "editor.foldingMaximumRegions": 50000, | |
| "editor.fontFamily": "IBM Plex Mono, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 12, | |
| "editor.fontWeight": "400", | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnSaveMode": "file", | |
| "editor.formatOnType": false, | |
| "editor.inlineSuggest.enabled": false, | |
| "editor.letterSpacing": 0.4, | |
| "editor.lineHeight": 28, | |
| "editor.lineNumbers": "on", | |
| "editor.linkedEditing": true, | |
| "editor.links": false, | |
| "editor.minimap.enabled": false, | |
| "editor.occurrencesHighlight": "off", | |
| "editor.quickSuggestions": { | |
| "comments": true, | |
| "other": true, | |
| "strings": true | |
| }, | |
| "editor.renderWhitespace": "none", | |
| "editor.scrollBeyondLastColumn": 2, | |
| "editor.scrollBeyondLastLine": false, | |
| "editor.selectionHighlight": false, | |
| "editor.snippetSuggestions": "inline", | |
| "editor.suggest.showFields": true, | |
| "editor.suggestSelection": "first", | |
| "editor.tabCompletion": "off", | |
| "editor.suggest.showModules": true, | |
| "editor.suggest.showVariables": true, | |
| "editor.suggest.showFunctions": true, | |
| "editor.suggest.showKeywords": false, | |
| "editor.tabSize": 2, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "punctuation.definition.comment" | |
| ], | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| } | |
| ] | |
| }, | |
| "editor.trimAutoWhitespace": true, | |
| "editor.unicodeHighlight.allowedCharacters": { | |
| "’": true | |
| }, | |
| "editor.wordWrap": "on", | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "markdown": "html", | |
| "typescript": "typescriptreact" | |
| }, | |
| "emmet.showExpandedAbbreviation": "never", | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "extensions.autoUpdate": true, | |
| "files.associations": { | |
| "*.css": "tailwindcss", | |
| "*.env": "dotenv", | |
| "*.env.*": "dotenv", | |
| "*.local": "dotenv", | |
| "*.erb": "erb", | |
| "*.md": "markdown", | |
| "*.mdx": "markdown" | |
| }, | |
| "files.autoSave": "onFocusChange", | |
| "files.exclude": { | |
| "**/node_modules": true, | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/tsconfig.tsbuildinfo": true, | |
| "**/.vercel": true, | |
| "**/.next": true, | |
| "**/.claude": true, | |
| "**/.basehub": true, | |
| "**/bun.lock": true, | |
| "**/next-env.d.ts": true | |
| }, | |
| "git.openRepositoryInParentFolders": "never", | |
| "go.toolsManagement.autoUpdate": true, | |
| "javascript.preferences.quoteStyle": "single", | |
| "javascript.suggest.paths": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/dist": true | |
| }, | |
| "tailwindCSS.includeLanguages": { | |
| "html": "HTML", | |
| "javascript": "javascript", | |
| "javascriptreact": "javascriptreact", | |
| "mdx": "html", | |
| "plaintext": "html", | |
| "typescript": "typescript", | |
| "typescriptreact": "typescriptreact" | |
| }, | |
| "terminal.integrated.confirmOnKill": "never", | |
| "terminal.integrated.copyOnSelection": true, | |
| "terminal.integrated.cursorBlinking": true, | |
| "terminal.integrated.cursorStyle": "underline", | |
| "terminal.integrated.fontFamily": "Recursive Mono Linear, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
| "terminal.integrated.fontSize": 12, | |
| "terminal.integrated.fontWeight": "400", | |
| "terminal.integrated.fontWeightBold": "600", | |
| "terminal.integrated.letterSpacing": 1.5, | |
| "terminal.integrated.lineHeight": 1.4, | |
| "terminal.integrated.persistentSessionReviveProcess": "never", | |
| "terminal.integrated.splitCwd": "initial", | |
| "terminal.integrated.tabs.enabled": false, | |
| "typescript.format.placeOpenBraceOnNewLineForControlBlocks": true, | |
| "typescript.format.placeOpenBraceOnNewLineForFunctions": true, | |
| "typescript.format.semicolons": "remove", | |
| "typescript.preferences.quoteStyle": "single", | |
| "typescript.suggest.paths": false, | |
| "typescript.tsdk": "node_modules/typescript/lib", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "window.commandCenter": true, | |
| "workbench.colorTheme": "Bearded Theme Anthracite", | |
| "workbench.editorAssociations": { | |
| "*.md": "default", | |
| "*.mdx": "default" | |
| }, | |
| "workbench.iconTheme": "bearded-icons", | |
| "zenMode.centerLayout": true, | |
| "zenMode.fullScreen": true, | |
| "zenMode.hideActivityBar": true, | |
| "zenMode.hideLineNumbers": false, | |
| "zenMode.restore": true, | |
| "cursor.composer.shouldChimeAfterChatFinishes": true, | |
| "window.newWindowProfile": "Default", | |
| "cursor.cpp.disabledLanguages": [ | |
| "plaintext" | |
| ], | |
| "[markdown]": { | |
| "editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment