Skip to content

Instantly share code, notes, and snippets.

@kazgorot
Last active December 4, 2023 17:05
Show Gist options
  • Save kazgorot/e69e2715c0db1b209af27b1ddbc67f77 to your computer and use it in GitHub Desktop.
Save kazgorot/e69e2715c0db1b209af27b1ddbc67f77 to your computer and use it in GitHub Desktop.
vs code / rust / bindings and settings
// 3rd party extention: Toggle (Peng Lv)
{
"key": "ctrl-u",
"command": "toggle",
"when": "editorTextFocus",
"args": {
"id": "toogle_inlay_hints",
"value": [
{
"editor.inlayHints.enabled": "on",
},
{
"editor.inlayHints.enabled": "off",
}
]
}
},
// https://medium.com/@danromans/how-to-customize-semantic-token-colorization-with-visual-studio-code-ac3eab96141b
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
// identifier // theme
// identifier // theme
"*.mutable": {
"underline": false,
"foreground": "#d9bbfc"
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment