Skip to content

Instantly share code, notes, and snippets.

@iguit0
Last active November 14, 2024 18:57
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": 16,
"editor.lineHeight": 27,
"editor.fontFamily": "FiraCode Nerd Font",
"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": true,
"terminal.integrated.minimumContrastRatio": 1,
// "editor.renderLineHighlight": "gutter",
"editor.renderLineHighlight": "all",
"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.runMode": "deferred",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"git.enableSmartCommit": true,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/bin/zsh",
"args": [
"-l",
"-i"
]
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "/bin/zsh",
"args": [
"-l",
"-i"
]
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.fontSize": 14,
"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"
},
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.scrollback": 1000000,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.cursorBlinking": "phase",
"gitlens.defaultDateFormat": "DD/MM/YYYY hh:mm",
"gitlens.currentLine.enabled": 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",
"security.workspace.trust.untrustedFiles": "open",
"svg.preview.mode": "img",
"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",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"html.autoClosingTags": true,
"javascript.autoClosingTags": true,
"typescript.autoClosingTags": true,
"workbench.productIconTheme": "material-product-icons",
"cSpell.language": "en,pt,pt_BR",
"diffEditor.ignoreTrimWhitespace": false,
"remote.autoForwardPortsSource": "hybrid",
"window.titleBarStyle": "custom",
"workbench.startupEditor": "none",
"window.customTitleBarVisibility": "auto",
"terminal.integrated.env.windows": {},
"terminal.integrated.env.osx": {
"CW_NEW_SESSION": "1",
"Q_NEW_SESSION": "1"
},
"editor.accessibilitySupport": "off",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"security.promptForLocalFileProtocolHandling": false,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cssVariables.lookupFiles": [
"**/*.css",
"**/*.scss",
"**/*.sass",
"**/*.less",
"node_modules/@mantine/core/styles.css"
],
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"console-ninja.featureSet": "Community",
"window.commandCenter": false,
"tabnine.experimentalAutoImports": true,
"window.autoDetectColorScheme": false,
"workbench.preferredDarkColorTheme": "One Dark Pro Darker",
"workbench.editor.empty.hint": "hidden",
"workbench.colorTheme": "Dark Modern One",
"codeium.enableCodeLens": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment