Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EmanuelCampos/1f7f15a982814e3ea62d2c28cea2d972 to your computer and use it in GitHub Desktop.
Save EmanuelCampos/1f7f15a982814e3ea62d2c28cea2d972 to your computer and use it in GitHub Desktop.
settings.json
{
// Define o tema do VSCode
"workbench.colorTheme":"Dracula",
"eslint.enable": true,
// Configura tamanho e família da fonte
"editor.fontSize":13,
"editor.lineHeight":20,
"editor.fontFamily":"Fira Code",
"editor.fontLigatures":true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
80,
120
],
"[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,
}
},
"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"
},
// Aplica um sinal visual na esquerda da linha selecionada
"editor.renderLineHighlight":"gutter",
"explorer.compactFolders": false,
// Aumenta a fonte do terminal
"terminal.integrated.fontSize":14,
// Define o tema dos ícones na sidebar
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment