Skip to content

Instantly share code, notes, and snippets.

@Hendrixer
Created June 12, 2023 21:53
Show Gist options
  • Save Hendrixer/df5477d10388fb2815018f375a19cf42 to your computer and use it in GitHub Desktop.
Save Hendrixer/df5477d10388fb2815018f375a19cf42 to your computer and use it in GitHub Desktop.
vs code config
{
"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
}
@7pulse
Copy link

7pulse commented Jun 12, 2023

thanks

@alexomon018
Copy link

Thanks for sharing!

@2marcous
Copy link

2marcous commented Dec 4, 2023

thanks

Copy link

ghost commented Dec 25, 2023

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment