Skip to content

Instantly share code, notes, and snippets.

@iconifyit
Created September 29, 2023 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iconifyit/e4b306e6abbe31b7c8d66c68367c0cad to your computer and use it in GitHub Desktop.
Save iconifyit/e4b306e6abbe31b7c8d66c68367c0cad to your computer and use it in GitHub Desktop.
Gray out VS Code JSdoc
/* add this in your settings.json (command + shit +p > Preferences : Open User Settings (JSON) */
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "storage.type.class.jsdoc",
"scope": "storage.type.class.jsdoc,entity.name.type.instance.jsdoc,variable.other.jsdoc",
"settings": {
"foreground": "#7f848eff"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment