Skip to content

Instantly share code, notes, and snippets.

@mrocha98
Created January 13, 2021 14:41
Show Gist options
  • Save mrocha98/e10e42af683b8f39b9bdcb9a68259dfc to your computer and use it in GitHub Desktop.
Save mrocha98/e10e42af683b8f39b9bdcb9a68259dfc to your computer and use it in GitHub Desktop.
vscode configs
{
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"editor.suggestSelection": "first",
"explorer.confirmDragAndDrop": true,
"explorer.confirmDelete": true,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.markdownlint": true
},
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.associations": {
"*.env.development": "env",
"*.env.production": "env"
},
"material-icon-theme.activeIconPack": "nest",
"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",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
".next": "serverless",
".jest": "test"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "typescript-def",
"*.proto": "3d",
"package.json": "nodejs_alt"
},
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"workbench.colorTheme": "Community Material Theme Darker",
"window.zoomLevel": 0,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment