Created
September 29, 2023 22:19
-
-
Save iconifyit/e4b306e6abbe31b7c8d66c68367c0cad to your computer and use it in GitHub Desktop.
Gray out VS Code JSdoc
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
Show hidden characters
/* 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