Last active
March 19, 2025 08:47
-
-
Save dikaio/47eb9a7888a7d0be46267f4290923411 to your computer and use it in GitHub Desktop.
Visual Studio 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" | |
} | |
], | |
"cursor.composer.collapsePaneInputBoxPills": true, | |
"cursor.cpp.enablePartialAccepts": true, | |
"editor.acceptSuggestionOnEnter": "off", | |
"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": true, | |
"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": false, | |
"other": true, | |
"strings": true | |
}, | |
"editor.renderWhitespace": "none", | |
"editor.scrollBeyondLastColumn": 2, | |
"editor.scrollBeyondLastLine": false, | |
"editor.selectionHighlight": false, | |
"editor.snippetSuggestions": "bottom", | |
"editor.suggest.showFields": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "on", | |
"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", | |
"*.erb": "erb", | |
"*.md": "markdown", | |
"*.mdx": "mdx" | |
}, | |
"files.autoSave": "onFocusChange", | |
"files.exclude": { | |
"**/node_modules": true, | |
"**/.git": true, | |
"**/.DS_Store": 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 Arc Reversed", | |
"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 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment