Last active
July 1, 2022 13:59
-
-
Save deverebor/b65c823381738faa49c9019dd31a285f to your computer and use it in GitHub Desktop.
TODO higligh extension config
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
"todohighlight.keywords": [ | |
{ | |
"text": "@todo", | |
"color": "#FF8C00", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
{ | |
"text": "@fixme", | |
"color": "#FFC197", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
{ | |
"text": "@warning:", | |
"color": "#FFC107", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
{ | |
"text": "@bug", | |
"color": "red", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
{ | |
"text": "@hack", | |
"color": "#98C379", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
{ | |
"text": "@test", | |
"color": "#00bcd4", | |
"backgroundColor": "transparent", | |
"isWholeLine": true, | |
}, | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment