Skip to content

Instantly share code, notes, and snippets.

@matheusps
Created April 10, 2020 16:01
Show Gist options
  • Select an option

  • Save matheusps/f46d3013ebc3d6b592a903e2ae251b41 to your computer and use it in GitHub Desktop.

Select an option

Save matheusps/f46d3013ebc3d6b592a903e2ae251b41 to your computer and use it in GitHub Desktop.
{
// general
"window.zoomLevel": 1,
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"editor.formatOnSave": false,
"editor.parameterHints.enabled": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"editor.renderLineHighlight": "gutter",
// theme & icon
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "city-lights-icons-vsc",
// font
"editor.fontFamily": "Dank Mono", // you need to buy Dank mono!
"editor.fontLigatures": true,
"editor.fontSize": 14,
// eslint
"eslint.packageManager": "yarn",
// emmet
"emmet.syntaxProfiles": {
"javascript": "jsx",
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
// formaters
"[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,
}
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
// imports
"javascript.suggest.autoImports": true, // i love auto imports, disable if you not
"typescript.suggest.autoImports": true, // i love auto imports, disable if you not
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
// zen - i use it a lot
"zenMode.hideTabs": false,
"zenMode.hideStatusBar": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment