Skip to content

Instantly share code, notes, and snippets.

@remainstheday
Created August 31, 2022 01:47
Show Gist options
  • Save remainstheday/894c1d4d1f73bc3f0f0b83e2175d2d0d to your computer and use it in GitHub Desktop.
Save remainstheday/894c1d4d1f73bc3f0f0b83e2175d2d0d to your computer and use it in GitHub Desktop.
Visual Studio Code settings that don't suck
{
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorCustomizations": {
"statusBar.background": "#303035",
"statusBar.noFolderBackground": "#303035",
"statusBar.debuggingBackground": "#303035"
},
"explorer.autoReveal": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"editor.renderWhitespace": "none",
"workbench.editor.showTabs": false,
"workbench.editor.enablePreview": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"workbench.iconTheme": "file-icons",
"git.ignoreMissingGitWarning": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.startupEditor": "none",
"files.exclude": {
"**/.git": false
},
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.defaultProfile.osx": "zsh",
"files.watcherExclude": {
"**/.bloop": true,
"**/.metals": true,
"**/.ammonite": true
},
"security.workspace.trust.untrustedFiles": "open",
"editor.guides.indentation": false,
"editor.fontSize": 16,
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
},
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
"editor.colorDecorators": false,
"extensions.ignoreRecommendations": true,
"files.autoSave": "onWindowChange",
"window.restoreWindows": "none",
"workbench.colorTheme": "Dracula"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment