Skip to content

Instantly share code, notes, and snippets.

@anacvignola
Last active January 5, 2022 19:50
Show Gist options
  • Save anacvignola/ed53974990903a610bd935591484987d to your computer and use it in GitHub Desktop.
Save anacvignola/ed53974990903a610bd935591484987d to your computer and use it in GitHub Desktop.
VSCode settings.
{
"editor.fontSize": 14,
"window.zoomLevel": 0,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"workbench.colorTheme": "Omni",
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "JetBrains Mono",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"explorer.compactFolders": false,
"window.menuBarVisibility": "toggle",
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"editor.tabSize": 2,
"editor.rulers": [
80,
120
],
"editor.insertSpaces": true,
"editor.formatOnSave": true,
//"editor.minimap.enabled": false,
"editor.detectIndentation": false,
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"domain": "class",
"schemas": "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",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"bracketPairColorizer.depreciation-notice": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment