Skip to content

Instantly share code, notes, and snippets.

@iguit0
Last active January 15, 2024 18:01
Show Gist options
  • Save iguit0/ce928757d91936cc60a89b77e3c6d9c6 to your computer and use it in GitHub Desktop.
Save iguit0/ce928757d91936cc60a89b77e3c6d9c6 to your computer and use it in GitHub Desktop.
Current vscode configuration file
{
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.tabSize": 4,
"editor.fontSize": 15,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"files.hotExit": "off",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": false
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": false
},
"explorer.compactFolders": false,
"explorer.decorations.badges": 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
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"jest.autoRun": "off",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"git.enableSmartCommit": true,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/bin/zsh",
"args": [
"-l",
"-i"
]
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.shellIntegration.enabled": true,
"typescript.tsserver.log": "off",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": 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"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.scrollback": 1000000,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.cursorBlinking": "phase",
"gitlens.defaultDateFormat": "DD/MM/YYYY hh:mm",
"gitlens.currentLine.enabled": true,
"python.testing.pytestEnabled": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"gitlens.advanced.messages": {
"suppressGitMissingWarning": true
},
"material-icon-theme.folders.color": "#fbae00",
"window.restoreWindows": "none",
"editor.formatOnPaste": true,
// "editor.formatOnSave": true,
"gitlens.defaultDateShortFormat": null,
"gitlens.defaultDateLocale": null,
"gitlens.defaultTimeFormat": "hh:mm",
"editor.formatOnType": true,
"telemetry.telemetryLevel": "off",
"workbench.startupEditor": "none",
"security.workspace.trust.untrustedFiles": "open",
"svg.preview.mode": "svg",
"terminal.integrated.inheritEnv": false,
"editor.linkedEditing": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.inlineSuggest.enabled": true,
"terminal.integrated.env.linux": {},
"gitlens.hovers.currentLine.over": "line",
"errorLens.excludeBySource": [
"Pylint(C0115:missing-class-docstring)"
],
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.organizeImports": "never"
}
},
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"editor.formatOnSave": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"workbench.productIconTheme": "fluent-icons",
"cSpell.language": "en,pt,pt_BR",
"window.commandCenter": false,
"workbench.colorTheme": "GitHub Dark",
"diffEditor.ignoreTrimWhitespace": false,
"remote.autoForwardPortsSource": "hybrid"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment