Skip to content

Instantly share code, notes, and snippets.

@angeloevangelista
Last active January 11, 2023 23:31
Show Gist options
  • Save angeloevangelista/253092d0f9fc5ee60d08c903e3d5b99d to your computer and use it in GitHub Desktop.
Save angeloevangelista/253092d0f9fc5ee60d08c903e3d5b99d to your computer and use it in GitHub Desktop.
Configurações para o Visual Studio Code
{
"security.workspace.trust.untrustedFiles": "open",
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"breadcrumbs.filePath": "on",
"breadcrumbs.enabled": true,
"files.eol": "\n",
"languageTool.enabled": true,
"languageTool.language": "en",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 18,
"editor.insertSpaces": true,
"editor.fontLigatures": true,
"editor.mouseWheelZoom": false,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": true,
"editor.fontFamily": "Fira Code, JetBrains Mono, 'Droid Sans Mono'",
"editor.detectIndentation": false,
"editor.renderLineHighlight": "all",
"editor.rulers": [80, 120],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"workbench.list.smoothScrolling": true,
"explorer.compactFolders": false,
"files.enableTrash": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontWeight": "200",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.shell.linux": ["/bin/zsh", "/bin/bash"],
"terminal.integrated.fontFamily": "JetBrains Mono, Fira Code",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "line",
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
"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",
"ViewModels": "views",
"partials": "cluster"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
".zshrc": "tune"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"eslint.enable": true,
"diffEditor.ignoreTrimWhitespace": false,
"liveServer.settings.donotShowInfoMsg": true,
"java.configuration.checkProjectSettingsExclusions": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"python.linting.pylintEnabled": true,
"cSpell.language": "en,en-US,pt,pt_BR",
"tabnine.experimentalAutoImports": true,
"workbench.startupEditor": "newUntitledFile",
"sass.lint.enable": true,
"angular.experimental-ivy": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"workbench.colorTheme": "Dracula",
"redhat.telemetry.enabled": true,
"vs-kubernetes": {
"vscode-kubernetes.helm-path.linux": "/home/angelo/.local/state/vs-kubernetes/tools/helm/linux-amd64/helm",
"vs-kubernetes.minikube-show-information-expiration": "2022-12-24T19:10:50.226Z"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveshare.accessibility.voiceEnabled": false,
"yaml.schemas": {
"file:///home/angelo/.vscode/extensions/atlassian.atlascode-3.0.0/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.jira.lastCreateSiteAndProject": {
"siteId": "",
"projectKey": ""
}
}
// "disable-color-correct-rendering": true
// this fixes the background color bug on linux => Configure Runtime Arguments
/*
Extensions
- MDX
- Sass
- Omni
- Eslint
- Prettier
- Live Share
- Live Server
- REST Client
- EditorConfig
- C# <Omnisharp>
- Color Highlight
- HTML CSS Support
- Dracula Official
- Live Sass Compiler
- Code Spell Checker
- Rocketseat ReactJS
- Java Extension pack
- Material Icon Theme
- Rocketseat React Native
- vscode-styled-components
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment