Skip to content

Instantly share code, notes, and snippets.

@enchant3dmango
Last active July 4, 2024 08:02
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.
VS Code
{
"[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
},
"[sql]": {
"editor.defaultFormatter": "inferrinizzard.prettier-sql-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"[yaml]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"diffEditor.ignoreTrimWhitespace": false,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
"editor.fontSize": 13,
"editor.fontWeight": "450",
"editor.largeFileOptimizations": false,
"editor.minimap.renderCharacters": false,
"editor.stickyScroll.enabled": true,
"explorer.compactFolders": false,
"files.watcherExclude": {
"**/.bloop": true,
"**/.metals": true,
"**/.ammonite": true
},
"git.autofetch": true,
"git.enableSmartCommit": true,
"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",
"python.terminal.activateEnvironment": true,
"redhat.telemetry.enabled": false,
"terminal.integrated.autoReplies": {},
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.gpuAcceleration": "auto",
"terminal.integrated.fontFamily": "FiraCode Nerd Font Propo",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeight": "450",
"window.zoomLevel": -1,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "GitHub Dark Dimmed",
"workbench.tree.indent": 12.5,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"tree.indentGuidesStroke": "#7fcb91"
},
"workbench.settings.applyToAllProfiles": [
"editor.codeLensFontFamily"
],
"workbench.editorAssociations": {
"*.xlsx": "gc-excelviewer-excel-editor"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment