Skip to content

Instantly share code, notes, and snippets.

@Pedroo-Nietoo
Last active June 27, 2024 23:30
Show Gist options
  • Save Pedroo-Nietoo/a20bf9b1ee512aeb97421f3bd5b7eb29 to your computer and use it in GitHub Desktop.
Save Pedroo-Nietoo/a20bf9b1ee512aeb97421f3bd5b7eb29 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.editor.empty.hint": "hidden",
"update.showReleaseNotes": false,
"workbench.tree.indent": 20, //Pesquisar
"files.exclude": {
"**/.git": false
},
"workbench.startupEditor": "newUntitledFile",
"security.workspace.trust.untrustedFiles": "newWindow",
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": true,
"extensions.autoUpdate": true,
"colorize.colorized_colors": ["BROWSERS_COLORS", "HEXA", "RGB", "HSL"],
"console-ninja.featureSet": "Community", //Pesquisar
"console-ninja.toolsToEnableSupportAutomaticallyFor": {
"live-server-extension": true,
"live-preview-extension": true
},
"javascript.suggest.autoImports": true,
"javascript.autoClosingTags": true,
"javascript.format.enable": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"typescript.autoClosingTags": true,
"typescript.format.enable": true,
"typescript.tsserver.log": "off", //Pesquisar
"typescript.updateImportsOnFileMove.enabled": "always",
// "material-icon-theme.folders.associations": {
// "main": "lib",
// "entities": "class",
// "use-cases": "functions",
// "migrations": "tools",
// "schemas": "class",
// "typeorm": "database",
// "mappers": "meta",
// "fakes": "mock",
// "subscribers": "messages",
// "domain": "class",
// "protocols": "contract",
// "infra": "app",
// "presentation": "template",
// "http": "container",
// "repositories": "mappings"
// },
// "material-icon-theme.activeIconPack": "nest",
// "material-icon-theme.folders.theme": "specific",
"symbols.folders.associations": {
"decorators": "folder-target",
"dto": "folder-sky",
"entities": "folder-sky",
"errors": "folder-red",
"lib": "folder-utils",
"test": "folder-sky-outline",
"e2e": "folder-red-outline",
"env": "folder-gear",
"github-auth": "folder-github"
},
"symbols.files.associations": {
"*.module.ts": "nest",
"*.service.ts": "nest-service",
"*.controller.ts": "nest-controller",
"*.routes.ts": "drawio",
"*.decorator.ts": "razor",
"*.cy.js": "cypress",
"*.cy.ts": "cypress",
"*.env": "gear"
},
"editor.rulers": [80, 120], //Pesquisar junto com wordWrap (abaixo)
"editor.wordWrap": "on", //Pesquisar
"editor.fontFamily": "Fira Code",
"editor.suggestSelection": "first",
"editor.fontLigatures": true,
"editor.accessibilitySupport": "off", //Pesquisar
"workbench.editor.labelFormat": "short",
"editor.parameterHints.enabled": true,
"editor.cursorStyle": "line",
"editor.cursorBlinking": "smooth",
"editor.stickyScroll.enabled": true,
"editor.minimap.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairsHorizontal": true,
//Arrumar
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
"prettier.configPath": ".prettierrc",
"eslint.format.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"editor.inlineSuggest.enabled": true,
"editor.semanticHighlighting.enabled": false,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.autoClosingBrackets": "always",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.autoClosingBrackets": "always",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.autoClosingBrackets": "always",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.autoClosingBrackets": "always",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"[xml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.autofetch": true,
"editor.tokenColorCustomizations": {
"textMateRules": []
},
"cloak.environmentKeys": "string.quoted.single.ini,constant.numeric.ini,string.quoted.double.ini",
"cloak.environmentComments": "comment.line.number-sign.ini",
"symbols.hidesExplorerArrows": false,
"yaml.schemas": {
"file:///c%3A/Users/u2/.vscode/extensions/atlassian.atlascode-3.0.10/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"bracket-pair-colorizer-2.depreciation-notice": false,
"liveServer.settings.donotShowInfoMsg": true,
"workbench.colorTheme": "Palenight (Mild Contrast)",
"explorer.confirmPasteNative": false,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.env.linux": {},
"workbench.iconTheme": "symbols",
"editor.linkedEditing": true,
"window.customTitleBarVisibility": "auto",
"npm.enableRunFromFolder": true,
"projectManager.sortList": "Saved",
"workbench.productIconTheme": "fluent-icons",
"vscode-pets.petSize": "medium",
"vscode-pets.theme": "forest",
"vscode-pets.throwBallWithMouse": true,
"prisma.showPrismaDataPlatformNotification": false,
"terminal.integrated.env.windows": {},
"github.copilot.editor.enableAutoCompletions": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment