Skip to content

Instantly share code, notes, and snippets.

@ErikGMatos
Last active May 11, 2022 18:09
Show Gist options
  • Save ErikGMatos/75b9709f7ed0c2f0686c7f930dabbdcc to your computer and use it in GitHub Desktop.
Save ErikGMatos/75b9709f7ed0c2f0686c7f930dabbdcc to your computer and use it in GitHub Desktop.
APENAS PARA COMPARATIVO.
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#7159c1",
"activityBar.activeBackground": "#7159c159",
"bookmarks.overviewRuler": "#157EFB88",
"bookmarks.lineBackground": "#7159c159",
"bookmarks.lineBorder": "#7159c1"
},
"debug.showBreakpointsInOverviewRuler": true,
// Configura tamanho e família da fonte
"editor.fontSize": 12,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.minimap.scale": 2,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [80, 120],
// Configurações necessárias para funcionamento dos plugins
"html.validate.scripts": false,
"editor.formatOnSave": false,
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[svelte]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[scss]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[css]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[vue]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}
},
"[elixir]": {
"editor.formatOnSave": true
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// Aumenta a fonte do terminal
"terminal.integrated.fontSize": 12,
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"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.defaultProfile.windows": "Git Bash",
"terminal.integrated.shell.osx": "/bin/zsh",
"explorer.confirmDragAndDrop": false,
"liveshare.featureSet": "insiders",
"liveshare.audio.startCallOnShare": true,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"typescript.tsserver.log": "verbose",
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"jestrunner.debugOptions": {
"args": ["--no-cache"],
"sourcemaps": "inline",
"disableOptimisticBPs": true
},
"editor.renderControlCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"svelte.plugin.svelte.compilerWarnings": {
"css-unused-selector": "error",
"unused-export-let": "error",
"missing-declaration": "error"
},
"sync.gist": "aa46fc8c7ad2f68746beae224ab6e102",
"sync.autoUpload": true,
"sync.forceUpload": true,
"createReactTSXComponent.fileExtension": "js",
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue",
"Salmon",
"LawnGreen",
"DarkOrange",
"Cornsilk"
],
"bracket-pair-colorizer-2.highlightActiveScope": true,
"bracket-pair-colorizer-2.activeScopeCSS": [
"borderStyle : solid",
"borderWidth : 0.01px",
"borderColor : {color}",
"opacity: 0.5"
],
"bracket-pair-colorizer-2.showBracketsInGutter": true,
"bracket-pair-colorizer-2.showBracketsInRuler": true,
"bracket-pair-colorizer-2.scopeLineRelativePosition": true,
"bracket-pair-colorizer-2.scopeLineCSS": [
"borderStyle : dotted",
"borderWidth : 1px",
"borderColor : {color}",
"opacity: 0.35"
],
"elixirLS.dialyzerEnabled": false,
"elixirLS.suggestSpecs": false,
"git.confirmSync": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment