Skip to content

Instantly share code, notes, and snippets.

@mtwzim
Last active December 23, 2020 16:58
Show Gist options
  • Save mtwzim/105b9350f6b4859d1fb43fc793e947fa to your computer and use it in GitHub Desktop.
Save mtwzim/105b9350f6b4859d1fb43fc793e947fa to your computer and use it in GitHub Desktop.
Minhas configurações adaptadas ao Visual Studio Code
{
"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