Skip to content

Instantly share code, notes, and snippets.

@pedroribeirodev
Created April 14, 2020 22:19
Show Gist options
  • Save pedroribeirodev/2fd54c013b47ad5acbe34430fd5be6ea to your computer and use it in GitHub Desktop.
Save pedroribeirodev/2fd54c013b47ad5acbe34430fd5be6ea to your computer and use it in GitHub Desktop.
VS CODE CONFIG 2020
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula",
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": -1,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.rulers": [
80,
120
],
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment