Skip to content

Instantly share code, notes, and snippets.

@almeidarenato
Created July 3, 2020 02:34
Show Gist options
  • Save almeidarenato/2f18b3fb98b86e684aea271b211cea8c to your computer and use it in GitHub Desktop.
Save almeidarenato/2f18b3fb98b86e684aea271b211cea8c to your computer and use it in GitHub Desktop.
vscode configs for settings.json
{
"workbench.settings.editor": "json",
"editor.cursorBlinking": "smooth",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.rulers": [
80,
120
],
"editor.tabSize": 2,
"editor.renderLineHighlight": "all",
"eslint.packageManager": "yarn",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"workbench.iconTheme": "material-icon-theme",
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"javascript.suggest.autoImports": false,
//aumenta fonte do terminal
"terminal.integrated.fontSize": 14,
"git.autofetch": true,
"workbench.colorTheme": "Dracula",
"files.associations": {
"*.njk": "html"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.renderWhitespace": "none",
"liveServer.settings.donotShowInfoMsg": true,
"[php]": {},
"diffEditor.renderSideBySide": true,
"gitlens.advanced.messages": {
"suppressCommitNotFoundWarning": true
},
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment