Skip to content

Instantly share code, notes, and snippets.

@CaioVinicius7
Last active May 13, 2024 18:59
Show Gist options
  • Save CaioVinicius7/92389a258862d8e372de634f12fe6250 to your computer and use it in GitHub Desktop.
Save CaioVinicius7/92389a258862d8e372de634f12fe6250 to your computer and use it in GitHub Desktop.
Configurações do meu VS Code
{
"typescript.preferences.preferTypeOnlyAutoImports": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"cSpell.language": "en,pt,pt_BR",
"terminal.integrated.tabs.enabled": false,
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"terminal.integrated.fontFamily": "Fira Code",
"editor.tabSize": 2,
"editor.detectIndentation": false,
"better-comments.multilineComments": true,
"better-comments.highlightPlainText": false,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"cSpell.userWords": [
"dtos",
"esbenp",
"Roboto",
"skillgroup",
"tabnine",
"vsintellicode"
],
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.gpuAcceleration": "off",
"tabnine.experimentalAutoImports": true,
"vscode-pets.theme": "beach",
"vscode-pets.position": "explorer",
"http.proxySupport": "off",
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"adapters": "contract",
"implementations": "core",
"entities": "class",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"use-cases": "functions",
"eslint-config": "tools",
"mappers": "meta",
"fakes": "mock",
"in-memory": "mock",
"modules": "components",
"infra": "app",
"dto": "typescript",
"dtos": "typescript",
"http": "container",
"providers": "include",
"repositories": "mappings",
"ui": "views",
"view": "views",
"store": "context"
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.tokenColorCustomizations": {
"textMateRules": []
},
"terminal.integrated.env.osx": {},
"terminal.integrated.env.windows": {},
"explorer.compactFolders": false,
"workbench.productIconTheme": "fluent-icons",
"terminal.integrated.env.linux": {},
"workbench.colorTheme": "Dracula",
"editor.stickyScroll.enabled": true,
"console-ninja.featureSet": "Community"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment