Created
May 3, 2022 18:51
-
-
Save luccabassoli/804e01aa6319dedd5f63897a51d900b0 to your computer and use it in GitHub Desktop.
Minha configuração de VSCode
This file contains hidden or 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
| { | |
| "workbench.iconTheme": "material-icon-theme", | |
| "material-icon-theme.activeIconPack": "nest", | |
| "material-icon-theme.folders.associations": { | |
| "entities": "class", | |
| "schemas": "class", | |
| "typeorm": "database", | |
| "repositories": "mappings", | |
| "http": "container", | |
| "migrations": "tools", | |
| "modules": "components", | |
| "implementations": "core", | |
| "websockets": "pipe" | |
| }, | |
| "material-icon-theme.files.associations": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "git.autofetch": true, | |
| "git.confirmSync": false, | |
| "workbench.startupEditor": "none", | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "explorer.compactFolders": false, | |
| "workbench.colorTheme": "Dracula", | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "prettier.printWidth": 90, | |
| "prettier.singleQuote": true, | |
| "prettier.arrowParens": "avoid", | |
| "prettier.trailingComma": "all", | |
| "editor.renderLineHighlight": "gutter", | |
| "terminal.integrated.fontSize": 14, | |
| "editor.cursorBlinking": "expand", | |
| "tabnine.experimentalAutoImports": true, | |
| "terminal.integrated.defaultProfile.linux": "zsh", | |
| "terminal.integrated.profiles.linux": { | |
| "bash": { | |
| "path": "bash", | |
| "icon": "terminal-bash" | |
| }, | |
| "zsh": { | |
| "path": "zsh" | |
| }, | |
| "fish": { | |
| "path": "fish" | |
| }, | |
| "tmux": { | |
| "path": "tmux", | |
| "icon": "terminal-tmux" | |
| }, | |
| "pwsh": { | |
| "path": "pwsh", | |
| "icon": "terminal-powershell" | |
| }, | |
| "zsh (2)": { | |
| "path": "/usr/bin/zsh" | |
| } | |
| }, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "git.enableSmartCommit": true, | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 24, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "redhat.telemetry.enabled": true, | |
| "vs-kubernetes": { | |
| "vscode-kubernetes.kubectl-path.linux": "/home/lucca/.vs-kubernetes/tools/kubectl/kubectl", | |
| "vscode-kubernetes.minikube-path.linux": "/home/lucca/.vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
| "vscode-kubernetes.helm-path.linux": "/home/lucca/.vs-kubernetes/tools/helm/linux-amd64/helm" | |
| }, | |
| "gitlens.defaultDateLocale": null, | |
| "gitlens.defaultDateFormat": null, | |
| "editor.inlineSuggest.enabled": true, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "explorer.confirmDelete": false, | |
| "javascript.inlayHints.enumMemberValues.enabled": true, | |
| "javascript.inlayHints.functionLikeReturnTypes.enabled": true, | |
| "javascript.inlayHints.parameterTypes.enabled": true, | |
| "javascript.inlayHints.variableTypes.enabled": true, | |
| "typescript.inlayHints.enumMemberValues.enabled": true, | |
| "typescript.inlayHints.functionLikeReturnTypes.enabled": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment