Skip to content

Instantly share code, notes, and snippets.

@etherealHero
Created May 19, 2026 06:49
Show Gist options
  • Select an option

  • Save etherealHero/04237a892929a04a882bc409fd3491d5 to your computer and use it in GitHub Desktop.

Select an option

Save etherealHero/04237a892929a04a882bc409fd3491d5 to your computer and use it in GitHub Desktop.
VS Code configs
{
"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"
]
}
{
"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