Created
May 19, 2026 06:49
-
-
Save etherealHero/04237a892929a04a882bc409fd3491d5 to your computer and use it in GitHub Desktop.
VS Code configs
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
| { | |
| "recommendations": [ | |
| /* https://open-vsx.org/vscode/item?itemName=<exntension-id> */ | |
| "vadimcn.vscode-lldb", | |
| "alefragnani.bookmarks", | |
| "usernamehw.errorlens", | |
| "tobermory.es6-string-html", | |
| "tamasfe.even-better-toml", | |
| "github.github-vscode-theme", | |
| "esbenp.prettier-vscode", | |
| "medo64.render-crlf", | |
| "ms-ceintl.vscode-language-pack-ru", | |
| "rust-lang.rust-analyzer", | |
| "wayou.vscode-todo-highlight", | |
| "mjmorales.generic-lsp-proxy" | |
| ] | |
| } |
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
| { | |
| "editor.unicodeHighlight.ambiguousCharacters": false, | |
| "editor.bracketPairColorization.enabled": false, | |
| "editor.renderWhitespace": "trailing", | |
| "editor.minimap.enabled": false, | |
| "editor.lineNumbers": "off", | |
| "workbench.editor.pinnedTabsOnSeparateRow": true, | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.activityBar.location": "bottom", | |
| "workbench.editor.useModal": "off", | |
| "workbench.startupEditor": "none", | |
| "workbench.colorTheme": "GitHub Dark Default", | |
| "workbench.iconTheme": null, | |
| "window.commandCenter": false, | |
| "window.menuBarVisibility": "hidden", | |
| "code-eol.highlightExtraWhitespace": true, | |
| "code-eol.decorateBeforeEol": true, | |
| "rust-analyzer.inlayHints.chainingHints.enable": false, | |
| "rust-analyzer.inlayHints.parameterHints.enable": false, | |
| "rust-analyzer.inlayHints.typeHints.enable": false, | |
| "rust-analyzer.check.command": "clippy", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "[rust]": { | |
| "editor.formatOnSave": true, | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "git.blame.editorDecoration.enabled": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment