Skip to content

Instantly share code, notes, and snippets.

@thalysonalexr
Last active August 20, 2020 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thalysonalexr/8d48e00d981ac7ea7ef440d678fea0e0 to your computer and use it in GitHub Desktop.
Save thalysonalexr/8d48e00d981ac7ea7ef440d678fea0e0 to your computer and use it in GitHub Desktop.
Minhas configurações atuais do VSCode 🚀
{
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.rulers": [80, 120],
"json.maxItemsComputed": 500000,
"eslint.enable": true,
"eslint.validate": ["javascript", "typescript", "vue", "html", "typescriptreact"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"window.zoomLevel": 0,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"git.enableSmartCommit": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"liveshare.featureSet": "insiders",
"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"liveServer.settings.donotShowInfoMsg": true,
"material-icon-theme.activeIconPack": "nest",
"screencastMode.onlyKeyboardShortcuts": true,
"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",
".ssh": "config",
"storage": "database",
"resolvers": "controller"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"ormconfig.env": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"post-receive": "git",
"docker-compose-prod.yml": "docker",
},
"workbench.colorTheme": "Dracula",
"editor.minimap.enabled": false,
"editor.wordWrap": "on",
"editor.fontSize": 16,
"terminal.integrated.fontSize": 16,
"remote.SSH.remotePlatform": {
"172.16.0.59": "linux"
},
"git.ignoreLegacyWarning": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment