Skip to content

Instantly share code, notes, and snippets.

@HugoBarreto
Last active July 11, 2021 17:35
Show Gist options
  • Save HugoBarreto/01b1538dd2f437e141b4f5ad72bea6ed to your computer and use it in GitHub Desktop.
Save HugoBarreto/01b1538dd2f437e141b4f5ad72bea6ed to your computer and use it in GitHub Desktop.
VS Code Settings
{
// Tema do VS Code
"workbench.colorTheme": "Dracula",
// Define o tema dos icones no sidebar
"workbench.iconTheme": "material-icon-theme",
// Configura fonte
"editor.fontSize": 14,
"editor.lineHeight": 0,
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// UI
"editor.tabSize": 4,
"editor.rulers": [80, 120],
"editor.renderLineHighlight": "gutter",
"breadcrumbs.enabled": true,
"explorer.compactFolders": false,
"workbench.editor.labelFormat": "short",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"window.zoomLevel": 0,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.parameterHints.enabled": true,
// Configurações da UI para ES
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"javascript.suggest.autoImports": false,
// Configuracoes de linguagens
"[javascript]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
"[racket]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
},
// Configuração de sugestão de código (Emmet)
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"material-icon-theme.folders.associations": {
"infra" : "app",
"entities" : "class",
"schemas" : "class",
"typeorm" : "database",
"repositories" : "mappings",
"http" : "container",
"migrations" : "tools",
"modules" : "components",
"implementations" : "core",
"dtos" : "typescript",
"fakes" : "mock",
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
},
//
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.olean": true
},
"liveshare.presence": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment