Last active
July 29, 2020 19:55
-
-
Save thenriquedb/b54ff416bc4af63e49383036370116d0 to your computer and use it in GitHub Desktop.
My VSCode 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": 12, | |
| "editor.lineHeight": 24, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.formatOnSave": false, | |
| "editor.parameterHints.enabled": false, | |
| "editor.suggestSelection": "first", | |
| // Aplica um sinal visual na esquerda da linha selecionada | |
| "editor.renderLineHighlight": "gutter", | |
| // Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
| "editor.rulers": [80, 120], | |
| //eslint | |
| "eslint.autoFixOnSave": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": true, | |
| "source.fixAll.eslint": true | |
| }, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "typescript", | |
| "typescriptreact", | |
| ], | |
| "breadcrumbs.enabled": true, | |
| "prettier.eslintIntegration": true, | |
| "prettier.stylelintIntegration": true, | |
| // Aumenta a fonte do terminal | |
| "terminal.integrated.fontSize": 13, | |
| // 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", | |
| "typescript.updateImportsOnFileMove.enabled": "never", | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.codeLens.enabled": false, | |
| "git.enableSmartCommit": true, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "explorer.confirmDragAndDrop": false, | |
| "liveshare.featureSet": "insiders", | |
| "explorer.confirmDelete": false, | |
| "typescript.tsserver.log": "verbose", | |
| "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "workbench.activityBar.visible": true, | |
| "terminal.integrated.rendererType": "dom", | |
| "sync.gist": "31449f4774589f77fdaef996115c7f83", | |
| "cSpell.userWords": [ | |
| "interpolate", | |
| "middlewares", | |
| "originalname", | |
| "secondary", | |
| "styles" | |
| ], | |
| "terminal.integrated.shell.linux": "/usr/bin/zsh", | |
| "search.collapseResults": "auto", | |
| "explorer.compactFolders": false, | |
| "typescript.preferences.importModuleSpecifier": "non-relative" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment