Skip to content

Instantly share code, notes, and snippets.

@jadilson12
Created January 30, 2022 18:27
Show Gist options
  • Select an option

  • Save jadilson12/709cae45f842897a89eb7efa7580e693 to your computer and use it in GitHub Desktop.

Select an option

Save jadilson12/709cae45f842897a89eb7efa7580e693 to your computer and use it in GitHub Desktop.
Vs code user Settings
{
// Defina o tema do vscode
"workbench.colorTheme": "Dracula",
// Define o tema dos icones na sidebar
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.labelFormat": "short",
// Define configuração do terminal
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.tabs.enabled": false,
"terminal.external.linuxExec": "zsh",
// "terminal.integrated.shell.linux": "/bin/zsh",
// "workbench.colorCustomizations": {
// "editorRuler.foreground": "#ff4081"
// },
// Define o tamnho e configuração da fonte
"editor.tabSize": 2,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
// "editor.suggestSelection": "first",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"[typescript]": {
"editor.formatOnSave": true,
"editor.formatOnPaste": true
},
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true,
// "source.fixAll.stylelint": true,
// "source.fixAll.tslint": true,
"source.organizeImports": false
},
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"breadcrumbs.enabled": true,
"extensions.ignoreRecommendations": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"security.workspace.trust.banner": "never",
"tabnine.experimentalAutoImports": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.fontSize": 14,
"workbench.list.openMode": "singleClick",
// "editor.wordWrap": "on",
// "editor.minimap.enabled": false,
// "editor.autoIndent": "advanced",
// "editor.formatOnPaste": true,
"typescript.tsserver.log": "off",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"eslint.format.enable": true,
// "editor.formatOnType": true,
// "editor.matchBrackets": "never",
// "editor.renameOnType": true,
// "editor.wordWrap": "off",
// "editor.suggestSelection": "first",
// "editor.tabCompletion": "on",
// "files.simpleDialog.enable": true,
// "git.ignoreMissingGitWarning": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"sync.forceUpload": false,
"sync.gist": "49aae3ffe65973b6babddc87b99c8391",
"sync.quietSync": true,
"git.enableSmartCommit": true,
"emmet.syntaxProfiles": {
"typescript": "tsx",
"css": "css",
"javascript": "jsx"
},
"emmet.includeLanguages": {
"typescript": "typescriptreact",
"css": "css",
"javascript": "javascriptreact"
},
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
// "tabnine.experimentalAutoImports": true,
// "eslint.alwaysShowStatus": true,
"beautify.ignore": ["**/*.js", "**/*.jsx"],
// "prettier.jsxSingleQuote": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[handlebars]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[TypeScript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"editor.suggestSelection": "first",
"emojisense.languages": {
"markdown": true,
"typescript": true,
"javascript": true,
"plaintext": {
"markupCompletionsEnabled": true,
"emojiDecoratorsEnabled": true
},
"scminput": true,
"git-commit": 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"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune"
},
"files.associations": {
"*.json": "json"
},
"editor.renderWhitespace": "none",
"window.menuBarVisibility": "compact",
"typescriptHero.imports.organizeOnSave": true,
"typescriptHero.imports.organizeSortsByFirstSpecifier": true,
"typescriptHero.imports.multiLineWrapThreshold": 80,
"importCost.javascriptExtensions": ["\\.jsx?$"],
"remote.SSH.defaultExtensions": ["cloud"],
"workbench.editor.untitled.hint": "hidden",
"editor.minimap.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
// "debug.console.collapseIdenticalLines": false
"security.workspace.trust.enabled": false,
"terminal.integrated.tabs.location": "left",
"git.autofetch": true,
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment