Skip to content

Instantly share code, notes, and snippets.

@jorgeants
Created January 16, 2020 14:16
Show Gist options
  • Save jorgeants/f724e53d0575e08e360b801ae44e66af to your computer and use it in GitHub Desktop.
Save jorgeants/f724e53d0575e08e360b801ae44e66af to your computer and use it in GitHub Desktop.
My Visual Studio Code settings (JSON)
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Dracula",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"editor.rulers": [
80,
120
],
"editor.renderLineHighlight": "gutter",
"editor.tabSize": 2,
"terminal.integrated.fontSize": 14,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.parameterHints.enabled": false,
"breadcrumbs.enabled": true,
"javascript.suggest.autoImports": false,
"editor.formatOnSave": false,
"eslint.codeActionsOnSave.mode": "all",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment