Created
February 11, 2025 07:51
-
-
Save vinayakkulkarni/f2e28d13735cbe85ab07d9e43c1d61eb to your computer and use it in GitHub Desktop.
My VSCode 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
{ | |
"editor.accessibilitySupport": "off", | |
"editor.tabSize": 2, | |
"editor.fontSize": 15, | |
"terminal.integrated.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.fontFamily": "Dank Mono, Monaco, 'Courier New', monospace", | |
"editor.lineHeight": 26, | |
"editor.fontLigatures": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.renderWhitespace": "none", | |
"editor.tabCompletion": "on", | |
"editor.minimap.enabled": false, | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "never", | |
"source.fixAll": "never", | |
"source.fixAll.eslint": "never" | |
}, | |
"eslint.codeActionsOnSave.mode": "problems", | |
"eslint.debug": true, | |
"eslint.enable": true, | |
"editor.formatOnPaste": false, | |
"editor.autoClosingQuotes": "never", | |
"extensions.ignoreRecommendations": true, | |
"explorer.decorations.badges": false, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"workbench.fontAliasing": "antialiased", | |
"workbench.sideBar.location": "left", | |
"zenMode.fullScreen": false, | |
"emmet.includeLanguages": { | |
"vue-html": "html" | |
}, | |
"git.enableSmartCommit": true, | |
"files.associations": { | |
"*.env.development": "env", | |
"*.env.production": "env", | |
"*.php_cs": "php", | |
".nycrc": "json", | |
"*.vue": "vue", | |
".env": "dotenv", | |
"*.mdc": "markdown" | |
}, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"typescript.preferences.quoteStyle": "single", | |
"javascript.preferences.quoteStyle": "single", | |
"javascript.format.enable": false, | |
"php.suggest.basic": true, | |
"headwind.runOnSave": true, | |
"files.defaultLanguage": "JavaScript", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"workbench.startupEditor": "none", | |
"redhat.telemetry.enabled": true, | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": true, | |
"plaintext": true, | |
"markdown": true | |
}, | |
"css.lint.unknownAtRules": "ignore", | |
"editor.suggestSelection": "first", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "stylelint.vscode-stylelint" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[handlebars]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[vue-html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[dockercompose]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.guides.bracketPairs": true, | |
"workbench.colorTheme": "SynthWave '84", | |
"workbench.iconTheme": "vscode-icons", | |
"terminal.external.osxExec": "Warp.app", | |
"workbench.activityBar.location": "hidden", | |
"security.workspace.trust.untrustedFiles": "open", | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"vue.server.maxOldSpaceSize": 32000, | |
"typescript.tsserver.maxTsServerMemory": 12288, | |
"typescript.tsserver.nodePath": "node", | |
"vue.server.hybridMode": true, | |
"i18n-ally.enabledFrameworks": [ | |
"vue", | |
"vue-sfc" | |
], | |
"editor.unicodeHighlight.allowedLocales": { | |
"zh-hant": true | |
}, | |
"editor.unicodeHighlight.allowedCharacters": { | |
"": true | |
}, | |
"gitlens.advanced.messages": { | |
"suppressIntegrationRequestTimedOutWarning": true | |
}, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"i18n-ally.displayLanguage": "en", | |
"workbench.productIconTheme": "material-product-icons", | |
"workbench.editorAssociations": { | |
"git-rebase-todo": "default" | |
}, | |
"colorize.languages": [ | |
"javascript", | |
"typescript", | |
"vue", | |
"html", | |
"css" | |
], | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.multiCursorLimit": 100000, | |
"editor.largeFileOptimizations": false, | |
"editor.formatOnSave": true, | |
"vue.autoInsert.dotValue": true, | |
"vue.complete.casing.tags": "autoKebab", | |
"vue.format.script.initialIndent": true, | |
"vue.format.style.initialIndent": true, | |
"vue.inlayHints.destructuredProps": true, | |
"vue.inlayHints.inlineHandlerLeading": true, | |
"vue.inlayHints.missingProps": true, | |
"vue.inlayHints.vBindShorthand": true, | |
"database-client.autoSync": true, | |
"workbench.editor.enablePreview": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment