Last active
December 23, 2020 16:58
-
-
Save mtwzim/105b9350f6b4859d1fb43fc793e947fa to your computer and use it in GitHub Desktop.
Minhas configurações adaptadas ao Visual Studio Code
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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"terminal.integrated.cursorBlinking": false, | |
"terminal.integrated.enableBell": false, | |
"terminal.integrated.rendererType": "experimentalWebgl", | |
"terminal.integrated.unicodeVersion": "11", | |
"terminal.integrated.copyOnSelection": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Dracula", | |
"workbench.editor.labelFormat": "short", | |
"editor.tabSize": 2, | |
"editor.fontSize": 15.5, | |
"editor.lineHeight": 23, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontWeight": "600", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true, | |
"source.organizeImports": true, | |
}, | |
"extensions.ignoreRecommendations": true, | |
"explorer.compactFolders": false, | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"breadcrumbs.enabled": true, | |
"gitlens.codeLens.recentChange.enabled": true, | |
"gitlens.codeLens.authors.enabled": true, | |
"gitlens.codeLens.enabled": true, | |
"screencastMode.onlyKeyboardShortcuts": true, | |
"window.zoomLevel": -0.5, | |
"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", | |
"websockets": "pipe", | |
"protos": "pipe", | |
"grpc": "pipe" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
".prettierrc": "json" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment