Skip to content

Instantly share code, notes, and snippets.

@jotapepinheiro
Created June 8, 2020 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jotapepinheiro/1fdf56aa2ed2706fa57bcdfb9753a6b6 to your computer and use it in GitHub Desktop.
Save jotapepinheiro/1fdf56aa2ed2706fa57bcdfb9753a6b6 to your computer and use it in GitHub Desktop.
VSCODE
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
//"files.autoSave": "onFocusChange",
// Configura tamanho e família da fonte
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontFamily": "'Fira Code', 'Operator Mono', 'Courier New', monospace",
"editor.fontLigatures": true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [80, 140],
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
},
"editor.formatOnSave": false,
// 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": 0,
"extensions.ignoreRecommendations": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
"nunjucks": "html"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"nunjucks": "html"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/.tmp": true,
"**/temp": true,
//"**/node_modules": true,
"**/PublicTempStorage": true,
"**/META-INF": true,
"**/WEB-INF": true
},
"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",
"terminal.integrated.fontFamily": "Hack Nerd Font",
"explorer.confirmDragAndDrop": false,
"liveshare.featureSet": "insiders",
"explorer.confirmDelete": false,
"typescript.tsserver.log": "verbose",
"todo-tree.tree.showScanModeButton": false
// "sonarlint.ls.javaHome": "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home",
// "sonarlint.connectedMode.connections.sonarqube": [
// { "connectionId": "EleitoralFront", "serverUrl": "http://sonar.test:9900", "token": "41ca576e21840dfea1498f6ba5bec4cf658bac66" },
// { "connectionId": "EleitoralProfissionalFront", "serverUrl": "http://sonar.test:9900", "token": "9b40bad3903be9b5510d8e3f0481287be7ff26a1" }
// ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment