Skip to content

Instantly share code, notes, and snippets.

@guilhermecapitao
Last active January 31, 2022 19:22
Show Gist options
  • Save guilhermecapitao/016b6fb7b9a096f46a2d7490ae3ac0b0 to your computer and use it in GitHub Desktop.
Save guilhermecapitao/016b6fb7b9a096f46a2d7490ae3ac0b0 to your computer and use it in GitHub Desktop.
VSCode
{
// "terminal.integrated.shell.osx": "/bin/zsh",
// Configura o tamanho e família da fonte
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
// Aplica linhas verticais para lembrar de quebrar a linha em códigos muito grandes
"editor.rulers": [
80,
120
],
"editor.formatOnSave": false,
// Ativa o emmet do html em arquivos nunjucks
"emmet.includeLanguages": {
"njk": "html"
},
// Não sei :0
"eslint.packageManager": "yarn",
"workbench.editor.labelFormat": "short",
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight": "gutter",
// Fonte do terminal
"terminal.integrated.fontSize": 13,
//Definição de pastar conforme o tipo de dado
"material-icon-theme.folders.associations": {
"infra": "app",
"bot": "husky",
"listeners": "Review",
"entities": "class",
"domain": "class",
"schema": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"providers": "include",
"subscribers": "messages",
"useCases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
},
"material-icon-theme.files.associations": {
"*.routes.ts": "routing"
},
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"files.associations": {
"*.env*": "dotenv"
},
/*
* Parameter Hints Settings
*/
"parameterHints.enabled": true,
"parameterHints.hintingType": "variableOnly",
"parameterHints.margin": "0 5 0 0",
"workbench.colorCustomizations": {
/*
* Parameter Hints Colors Settings
*/
"parameterHints.hintBackground": "#191622",
"parameterHints.hintForeground": "#5A4B81"
// "parameterHints.hintForeground": "#979797"
},
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"extensions.ignoreRecommendations": true,
"emmet.syntaxProfiles": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"git.enableSmartCommit": true,
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": false,
"typescript.suggest.autoImports": true,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"tabnine.experimentalAutoImports": true,
"files.eol": "\n",
"liveshare.authenticationProvider": "GitHub",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editor.untitled.hint": "hidden",
"editor.inlineSuggest.enabled": true,
"terminal.integrated.fontFamily": "monospace",
"editor.semanticTokenColorCustomizations": {
"enabled": true
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma",
"editor.formatOnSave": true,
},
"security.workspace.trust.untrustedFiles": "open"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment