Created
April 27, 2026 19:51
-
-
Save wrongbyte/8e282b18ba49525cf07481aeee74b9f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "explorer.confirmDragAndDrop": false, | |
| "typescript.validate.enable": true, | |
| "explorer.confirmDelete": false, | |
| "files.autoSave": "afterDelay", | |
| "keyboard.dispatch": "keyCode", | |
| "workbench.colorTheme": "Base2Tone_DesertDark", | |
| "gitlens.rebaseEditor.ordering": "asc", | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnSave": true, | |
| "vim.smartRelativeLine": true, | |
| "editor.lineNumbers": "relative", | |
| "window.titleBarStyle": "custom", | |
| "workbench.editor.tabSizing": "shrink", | |
| "window.density.editorTabHeight": "compact", | |
| "editor.glyphMargin": false, | |
| "vim.handleKeys": { | |
| "<C-p>": false, | |
| "<C-j>": false | |
| }, | |
| "[rust]": { | |
| "editor.defaultFormatter": "rust-lang.rust-analyzer" | |
| }, | |
| "[terraform]": { | |
| "editor.defaultFormatter": "hashicorp.terraform" | |
| }, | |
| "[proto3]": { | |
| "editor.defaultFormatter": "zxh404.vscode-proto3" | |
| }, | |
| "[terragrunt]": { | |
| "editor.defaultFormatter": "hashicorp.terraform", | |
| "editor.formatOnSave": true | |
| }, | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ | |
| "]", | |
| "d" | |
| ], | |
| "commands": [ | |
| "editor.action.marker.nextInFiles" | |
| ], | |
| "silent": true | |
| }, | |
| { | |
| "before": [ | |
| "[", | |
| "d" | |
| ], | |
| "commands": [ | |
| "editor.action.marker.prevInFiles" | |
| ], | |
| "silent": true | |
| }, | |
| { | |
| "before": [ | |
| "leader", | |
| "r" | |
| ], | |
| "commands": [ | |
| "editor.action.goToReferences" | |
| ], | |
| "silent": true | |
| } | |
| ], | |
| "editor.wordWrap": "on", | |
| "vim.useSystemClipboard": true, | |
| "workbench.sideBar.location": "right", | |
| "editor.minimap.enabled": false, | |
| "workbench.activityBar.location": "top", | |
| "window.customTitleBarVisibility": "windowed", | |
| "rust-analyzer.inlayHints.expressionAdjustmentHints.enable": "never", | |
| "rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always", | |
| "rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": true, | |
| "rust-analyzer.inlayHints.typeHints.enable": false, | |
| "rust-analyzer.inlayHints.implicitDrops.enable": false, | |
| "rust-analyzer.inlayHints.chainingHints.enable": false, | |
| "rust-analyzer.inlayHints.genericParameterHints.const.enable": false, | |
| "rust-analyzer.inlayHints.parameterHints.enable": false, | |
| "rust-analyzer.inlayHints.closingBraceHints.minLines": 15, | |
| "rust-analyzer.inlayHints.closingBraceHints.enable": true, | |
| "editor.inlayHints.enabled": "onUnlessPressed", | |
| "rust-analyzer.cachePriming.enable": false, | |
| "editor.fontFamily": "NotoSansM Nerd Font Mono", | |
| "terminal.integrated.fontFamily": "NotoSansM Nerd Font Mono", | |
| "window.zoomLevel": 2.3, | |
| "editor.semanticTokenColorCustomizations": { | |
| "enabled": true, | |
| "rules": { | |
| "comment:rust": "#aaa", | |
| "comment.documentation:rust": "#6a9955", | |
| "*.mutable": { | |
| "fontStyle": "underline" | |
| }, | |
| "*.unsafe:rust": { | |
| "fontStyle": "bold underline italic" | |
| } | |
| } | |
| }, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "github.copilot.enable": { | |
| "*": false, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false | |
| }, | |
| }⏎ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment