Skip to content

Instantly share code, notes, and snippets.

@enchant3dmango
Last active February 20, 2025 06:56
Show Gist options
  • Save enchant3dmango/0cb0ec4e010a8898db8776f0d11d70c1 to your computer and use it in GitHub Desktop.
Save enchant3dmango/0cb0ec4e010a8898db8776f0d11d70c1 to your computer and use it in GitHub Desktop.
My VS Code settings.
{
"[css]": {
"editor.defaultFormatter": "vscode.css-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnType": true
},
"[solidity]": {
"editor.defaultFormatter": "NomicFoundation.hardhat-solidity",
"editor.formatOnSave": true
},
"[sql]": {
"editor.defaultFormatter": "inferrinizzard.prettier-sql-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"[yaml]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"breadcrumbs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "GeistMono Nerd Font Propo",
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
"editor.fontSize": 13,
"editor.fontWeight": "450",
"editor.hideCursorInOverviewRuler": true,
"editor.largeFileOptimizations": false,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.stickyScroll.enabled": true,
"explorer.compactFolders": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.bloop": true,
"**/.metals": true,
"**/.ammonite": true
},
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "always",
"github.copilot.advanced": {
"authProvider": "github"
},
"gitlens.advanced.messages": {
"suppressGitDisabledWarning": true,
"suppressIntegrationDisconnectedTooManyFailedRequestsWarning": true
},
"gitlens.currentLine.pullRequests.enabled": false,
"gitlens.hovers.autolinks.enhanced": false,
"gitlens.hovers.pullRequests.enabled": false,
"gitlens.statusBar.pullRequests.enabled": false,
"gitlens.views.branches.pullRequests.enabled": false,
"gitlens.views.branches.pullRequests.showForBranches": false,
"gitlens.views.branches.pullRequests.showForCommits": false,
"gitlens.views.commits.pullRequests.enabled": false,
"gitlens.views.commits.pullRequests.showForBranches": false,
"gitlens.views.commits.pullRequests.showForCommits": false,
"gitlens.views.contributors.pullRequests.enabled": false,
"gitlens.views.contributors.pullRequests.showForCommits": false,
"gitlens.views.remotes.pullRequests.showForCommits": false,
"gitlens.views.remotes.pullRequests.showForBranches": false,
"gitlens.views.remotes.pullRequests.enabled": false,
"gitlens.views.repositories.pullRequests.showForCommits": false,
"gitlens.views.repositories.pullRequests.showForBranches": false,
"gitlens.views.repositories.pullRequests.enabled": false,
"gitlens.views.searchAndCompare.pullRequests.showForCommits": false,
"gitlens.views.searchAndCompare.pullRequests.enabled": false,
"go.toolsManagement.autoUpdate": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"makefile.configureOnOpen": true,
"python.defaultInterpreterPath": "/usr/bin/python3",
"python.terminal.activateEnvironment": true,
"redhat.telemetry.enabled": false,
"scm.graph.badges": "all",
"solidity.telemetry": true,
"terminal.integrated.allowedLinkSchemes": [
"file",
"http",
"https",
"mailto",
"vscode",
"vscode-insiders",
"docker-desktop"
],
"terminal.integrated.autoReplies": {},
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.gpuAcceleration": "auto",
"terminal.integrated.fontFamily": "GeistMono Nerd Font Propo",
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.lineHeight": 1,
"vscode_custom_css.imports": [
"file://${userHome}/.config/vscode/custom.css",
"file://${userHome}/.config/vscode/custom.js",
],
"workbench.activityBar.location": "bottom",
"workbench.editor.showTabs": "single",
"workbench.editor.editorActionsLocation": "titleBar",
"workbench.iconTheme": "material-icon-theme",
"workbench.statusBar.visible": true,
"workbench.tree.indent": 12.5,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#7fcb91"
},
"workbench.editorAssociations": {
"*.xlsx": "gc-excelviewer-excel-editor"
},
"workbench.settings.applyToAllProfiles": ["editor.codeLensFontFamily"],
"workbench.startupEditor": "none",
"yaml.schemas": {
"file:///Users/andresitorus/.vscode/extensions/atlassian.atlascode-3.0.10/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment