Created
June 6, 2021 17:30
-
-
Save rodrigoalbinoh/a9ec8c810b6c0cc27773765be6aa30f6 to your computer and use it in GitHub Desktop.
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
| { | |
| // Define o tema do VSCODE | |
| "workbench.colorTheme": "Omni", | |
| // Aumenta a fonte do terminal | |
| "terminal.integrated.fontSize": 14, | |
| // Define o tema dos ícones na sidebar | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| // Configura tamanho e familia da fonte | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 18, | |
| "editor.lineHeight": 24, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "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": [80, 120], | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| "source.fixAll": false | |
| }, | |
| "editor.formatOnSave": false, | |
| "emmet.syntaxProfiles": { "javascript": "jsx" }, | |
| "emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
| "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" | |
| }, | |
| "material-icon-theme.files.associations": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune" | |
| }, | |
| "workbench.statusBar.visible": true, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "yaml.schemas": { | |
| "file:///home/rodrigo/.vscode/extensions/atlassian.atlascode-2.8.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" | |
| }, | |
| "telemetry.enableTelemetry": false, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/env": true, | |
| "**/venv": true | |
| }, | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/**": true, | |
| "**/env/**": true, | |
| "**/venv/**": true, | |
| "env-*": true | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "prettier.printWidth": 8000, | |
| "prettier.requireConfig": true, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.largeFileOptimizations": false, | |
| "workbench.editorAssociations": [ | |
| { | |
| "viewType": "jupyter.notebook.ipynb", | |
| "filenamePattern": "*.ipynb" | |
| } | |
| ], | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment