Created
January 17, 2020 14:04
-
-
Save marquesrf/859c89edac4f2bcc23badbc84d8aeef0 to your computer and use it in GitHub Desktop.
Rocketseat cloned(and edited) vscode settings
This file contains 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": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": false, | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
{ | |
"language": "javascript", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascriptreact", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescript", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescriptreact", | |
"autoFix": true | |
} | |
], | |
"files.associations": { | |
".sequelizerc": "javascript" | |
}, | |
// 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": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"window.zoomLevel": 1, | |
"extensions.ignoreRecommendations": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"git.enableSmartCommit": true, | |
"editor.parameterHints.enabled": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"typescript.tsserver.log": "verbose", | |
"javascript.suggest.autoImports": false, | |
"typescript.suggest.autoImports": false, | |
"workbench.activityBar.visible": true, | |
"terminal.integrated.fontFamily": "monospace" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment