Skip to content

Instantly share code, notes, and snippets.

@ebnersilva
Last active October 15, 2021 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebnersilva/5c1c9f7188860aa1700b0db4e0793f1d to your computer and use it in GitHub Desktop.
Save ebnersilva/5c1c9f7188860aa1700b0db4e0793f1d to your computer and use it in GitHub Desktop.
Vscode configurations
{
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.fontFamily": "Fira Code",
"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,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.rulers": [120, 160],
"editor.tabSize": 2,
"editor.semanticHighlighting.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"terminal.explorerKind": "external",
"git.ignoreLimitWarning": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"interfaces": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"types": "typescript",
"fakes": "mock",
"store": "Redux-store",
"useCases": "controller"
},
"window.restoreFullscreen": true,
"window.newWindowDimensions": "maximized",
"workbench.editor.untitled.hint": "hidden",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": false,
"yaml": false,
"plaintext": true,
"markdown": false
},
"svg.preview.mode": "svg",
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Dracula Pro",
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment