Skip to content

Instantly share code, notes, and snippets.

@csorlandi
Created May 7, 2020 23:40
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 csorlandi/f91e64b65101621b492e3c77a8e1ca70 to your computer and use it in GitHub Desktop.
Save csorlandi/f91e64b65101621b492e3c77a8e1ca70 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Dracula",
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"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
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"files.associations": {
".sequelizerc": "javascript",
".prettierrc": "json"
},
"terminal.integrated.shell.osx": "/bin/zsh",
"trailing-spaces.trimOnSave": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"window.zoomLevel": 0,
"liveServer.settings.donotShowInfoMsg": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment