Skip to content

Instantly share code, notes, and snippets.

@pauloogliano
Created February 25, 2021 22:17
Show Gist options
  • Save pauloogliano/c90bc089f5add00b8d40716b8334d1e5 to your computer and use it in GitHub Desktop.
Save pauloogliano/c90bc089f5add00b8d40716b8334d1e5 to your computer and use it in GitHub Desktop.
Settings that I use in VSCode
{
"workbench.iconTheme": "material-icon-theme",
"editor.wordWrap": "on",
"diffEditor.wordWrap": "on",
"editor.rulers": [
100
],
"editor.tabSize": 2,
"[json]": {
"editor.tabSize": 4
},
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"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"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
},
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"workbench.colorTheme": "Dracula",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"gitlens.views.lineHistory.enabled": true,
"powermode.enabled": true,
"powermode.enableShake": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment