Created
September 4, 2021 21:15
-
-
Save williamroberttv/d73bfad8de8f68ba49da14f54e2b65c0 to your computer and use it in GitHub Desktop.
vscode json settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.fontSize": 14, | |
"workbench.colorTheme": "Dracula Soft", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.tabSize": 2, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 26, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.semanticHighlighting.enabled": false, | |
"explorer.compactFolders": false, | |
"editor.renderLineHighlight": "gutter", | |
"workbench.editor.labelFormat": "short", | |
"extensions.ignoreRecommendations": true, | |
"breadcrumbs.enabled": true, | |
"editor.parameterHints.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"editor.rulers": [80, 120], | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json", | |
"*.tsx": "typescriptreact", | |
".env.*": "dotenv" | |
}, | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
"git.enableSmartCommit": true, | |
"typescript.tsserver.log": "off", | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"material-icon-theme.activeIconPack": "nest", | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"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" | |
}, | |
"window.menuBarVisibility": "toggle", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"tabnine.experimentalAutoImports": true, | |
"editor.suggestSelection": "first", | |
"codesnap.backgroundColor": "transparent", | |
"codesnap.transparentBackground": true, | |
"codesnap.boxShadow": "0 0 0", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"terminal.integrated.showExitAlert": false, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"window.zoomLevel": 0, | |
"terminal.external.windowsExec": "D:\\Program Files (x86)\\Git\\bin\\bash.exe", | |
"terminal.integrated.automationShell.windows": "D:\\Program Files (x86)\\Git\\bin\\bash.exe", | |
"terminal.integrated.defaultProfile.windows": "Git Bash" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment