Created
April 3, 2019 15:33
-
-
Save tiagonevestia/774854b84d8698ffbc5f56b8124a481c to your computer and use it in GitHub Desktop.
settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Define o tema do VSCODE | |
"workbench.colorTheme": "Dracula", | |
// Configura tamanho e família da fonte | |
"editor.fontSize": 14, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"[typescript]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": false | |
}, | |
// Aplica linhas verticais para lembrar de quebra de linha em código muito grande | |
"editor.rulers": [80, 120], | |
"prettier.eslintIntegration": true, | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ "language": "typescript", "autoFix": true }, | |
{ "language": "typescriptreact", "autoFix": true } | |
], | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight": "gutter", | |
// Aumenta a fonte do terminal | |
"terminal.integrated.fontSize": 14, | |
// Define o tema dos ícones na sidebar | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 0, | |
"editor.tabSize": 2, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"terminal.integrated.shell.osx": "zsh" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment