Created
August 12, 2019 18:08
-
-
Save tiagonevestia/57824910e4d168b46555b623f81eb6c8 to your computer and use it in GitHub Desktop.
Config
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 | |
// Theme Setup. | |
"workbench.colorTheme": "Shades of Purple", | |
"editor.fontFamily": "Fira Code", | |
"terminal.integrated.fontFamily": "Fira Code", | |
"editor.fontSize": 17, | |
"editor.lineHeight": 24.65, | |
"editor.letterSpacing": 0.5, | |
"editor.fontWeight": "400", | |
"editor.fontLigatures": true, | |
"editor.cursorStyle": "line", | |
"editor.cursorWidth": 5, | |
"editor.cursorBlinking": "solid", | |
"editor.renderWhitespace": "all", | |
"editor.snippetSuggestions": "top", | |
"editor.glyphMargin": true, | |
"workbench.editor.enablePreview": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
// Formatting Optional. | |
"editor.formatOnSave": true, | |
"prettier.eslintIntegration": true, | |
"eslint.run": "onType", | |
"eslint.autoFixOnSave": true, | |
// MacOS Only Settings. | |
"workbench.fontAliasing": "auto", | |
"terminal.integrated.macOptionIsMeta": true, | |
"workbench.statusBar.feedback.visible": false, | |
// SOP's highlight matching tag setting. | |
"highlight-matching-tag.styles": { | |
"opening": { | |
"full": { | |
"highlight": "rgba(165, 153, 233, 0.3)" | |
} | |
} | |
}, | |
// SOP's Import Cost Extension Settings. | |
"importCost.largePackageColor": "#EC3A37F5", | |
"importCost.mediumPackageColor": "#B362FF", | |
"importCost.smallPackageColor": "#B362FF", // Configura tamanho e família da fonte | |
"[typescript]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescriptreact]": { | |
"editor.formatOnSave": false, | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
// Aplica linhas verticais para lembrar de quebra de linha em código muito grande | |
"editor.rulers": [80, 120], | |
"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.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", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"peacock.favoriteColors": [ | |
{ | |
"name": "Angular Red", | |
"value": "#b52e31" | |
}, | |
{ | |
"name": "Auth0 Orange", | |
"value": "#eb5424" | |
}, | |
{ | |
"name": "Azure Blue", | |
"value": "#007fff" | |
}, | |
{ | |
"name": "C# Purple", | |
"value": "#68217A" | |
}, | |
{ | |
"name": "Gatsby Purple", | |
"value": "#639" | |
}, | |
{ | |
"name": "Go Cyan", | |
"value": "#5dc9e2" | |
}, | |
{ | |
"name": "Java Blue-Gray", | |
"value": "#557c9b" | |
}, | |
{ | |
"name": "JavaScript Yellow", | |
"value": "#f9e64f" | |
}, | |
{ | |
"name": "Mandalorian Blue", | |
"value": "#1857a4" | |
}, | |
{ | |
"name": "Node Green", | |
"value": "#215732" | |
}, | |
{ | |
"name": "React Blue", | |
"value": "#00b3e6" | |
}, | |
{ | |
"name": "Something Different", | |
"value": "#832561" | |
}, | |
{ | |
"name": "Vue Green", | |
"value": "#42b883" | |
} | |
], | |
"vsicons.projectDetection.autoReload": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment