-
-
Save mainak9163/d50773570e3d5eba155fa3edc8e674be to your computer and use it in GitHub Desktop.
vs code config
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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"editor.tabSize": 2, | |
"editor.fontFamily": "'Fira Mono', Menlo, Monaco, 'Courier New', monospace", | |
"files.exclude": { | |
"**/.git": false | |
}, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active", | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
// "eslint.probe": [ | |
// "javascript", | |
// "javascriptreact", | |
// "typescript", | |
// "typescriptreact", | |
// "html", | |
// "vue", | |
// "markdown" | |
// ], | |
// "eslint.validate": [ | |
// "javascript", | |
// "javascriptreact", | |
// "vue", | |
// "typescript", | |
// "tyescriptreact" | |
// ], | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"vsicons.dontShowNewVersionMessage": true, | |
"editor.accessibilitySupport": "off", | |
"editor.codeActionsOnSave": { | |
// "source.formatDocument": true, | |
"source.fixAll.eslint": true | |
}, | |
"eslint.alwaysShowStatus": true, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.showSuggestionsAsSnippets": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"tyescriptreact": "tyescriptreact", | |
"razor": "html", | |
"plaintext": "pug" | |
}, | |
"[solidity]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.configPath": ".prettierrc", | |
"prettier.requireConfig": true, | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"git.enableSmartCommit": true, | |
"editor.fontSize": 18, | |
"tailwindCSS.experimental.configFile": null, | |
"tailwindCSS.experimental.classRegex": [ | |
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"] | |
], | |
"editor.wordWrap": "wordWrapColumn", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": false, | |
"plaintext": true, | |
"markdown": false, | |
"scminput": false, | |
"yaml": false | |
}, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"files.associations": { | |
"*.tsx": "typescriptreact" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"window.zoomLevel": 1.5 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment