Skip to content

Instantly share code, notes, and snippets.

@henriquecarv
Last active June 6, 2019 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henriquecarv/7176b1d6720cba5ca8f32756cfa3c313 to your computer and use it in GitHub Desktop.
Save henriquecarv/7176b1d6720cba5ca8f32756cfa3c313 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
{
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Dark+ (Sublime)",
"workbench.startupEditor": "newUntitledFile",
"breadcrumbs.enabled": true,
"prettier.eslintIntegration": true,
"prettier.stylelintIntegration": true,
"prettier.tslintIntegration": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDelete": false,
"window.zoomLevel": 0,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDragAndDrop": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"files.associations": {
"*.huskyrc": "json",
"*.lintstagedrc": "json",
"*.mocharc": "json",
"*.svgrrc": "json",
"*.sequelizerc": "javascript"
},
"workbench.iconTheme": "vscode-icons"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment