Created
September 29, 2022 02:19
-
-
Save eliasfaical/0befa8568558e9927c88b8da5e56d809 to your computer and use it in GitHub Desktop.
settings.json
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": 28, | |
"editor.fontFamily": "Fira Code Retina", | |
"editor.fontLigatures": true, | |
"explorer.compactFolders": false, | |
"dart.previewFlutterUiGuides": true, | |
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": false, | |
"eslint.packageManager": "yarn", | |
"[javascript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
}, | |
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | |
}, | |
"[typescript]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true, | |
} | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json" | |
}, | |
// Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight": "line", | |
// Aumenta a fonte do terminal | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.lineHeight": 1.2, | |
"terminal.integrated.fontFamily": "Fira Code", | |
// Define o tema dos ícones na sidebar | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"extensions.ignoreRecommendations": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"breadcrumbs.enabled": true, | |
"git.enableSmartCommit": true, | |
"editor.parameterHints.enabled": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
// "terminal.integrated.shell.osx": "/bin/zsh", | |
"explorer.confirmDragAndDrop": false, | |
"liveshare.featureSet": "insiders", | |
"explorer.confirmDelete": false, | |
"typescript.tsserver.log": "verbose", | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"workbench.activityBar.visible": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"vsicons.dontShowNewVersionMessage": true, | |
"cSpell.language": ",pt,pt_PT", | |
"angular.experimental-ivy": true, | |
"tabnine.experimentalAutoImports": true, | |
"dart.flutterSdkPath": "/Applications/flutter", | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"dart.openDevTools": "flutter", | |
"kite.showWelcomeNotificationOnStartup": false, | |
"bracket-pair-colorizer-2.depreciation-notice": false, | |
"editor.hover.enabled": false, | |
"terminal.integrated.tabs.enabled": false, | |
"[scss]": { | |
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | |
}, | |
"php.validate.executablePath": "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment