Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DoctorDerek/190713a7206d173cb332a6f214de5def to your computer and use it in GitHub Desktop.
Save DoctorDerek/190713a7206d173cb332a6f214de5def to your computer and use it in GitHub Desktop.
Top 10 Advanced VS Code Settings for Senior Developers by Dr. Derek Austin 🥳 https://medium.com/p/46e348351bd6
"workbench.activityBar.visible": false,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false,
"env": false
},
"window.zoomLevel": 1,
"editor.fontSize": 15,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifier": "non-relative",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"addMissingImports": true
},
"css.validate": false,
"stylelint.enable": true,
"[css]": {
"editor.suggest.insertMode": "replace"
},
"emmet.includeLanguages": {
"postcss": "css",
"javascript": "javascriptreact",
"markdown": "javascriptreact"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
"emmet.triggerExpansionOnTab": true,
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.validate": true,
"workbench.editor.enablePreview": false,
"sync.gist": "b668044236ffffffff55555555555555",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment