Created
November 20, 2024 09:35
-
-
Save bunsyy/658ebbfa7f05b73a66c16022a1a7e4f3 to your computer and use it in GitHub Desktop.
Custom Todo Highlight and Todo Tree in VSCode
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": "#000", | |
"backgroundColor": "#FFBE0B", | |
"isWholeLine": false, | |
}, | |
{ | |
"text": "DOING:", | |
"color": "#FFFFFF", | |
"backgroundColor": "#FB5607", | |
"isWholeLine": false, | |
}, | |
{ | |
"text": "DONE:", | |
"color": "#FFFFFF", | |
"backgroundColor": "#136F63", | |
"isWholeLine": false, | |
}, | |
], | |
"todo-tree.general.tags": [ | |
"TODO", | |
"FIXME", | |
"DOING", | |
"DONE" | |
], | |
"todo-tree.highlights.enabled": false, | |
"todo-tree.highlights.customHighlight": { | |
"TODO": { | |
"icon": "check", | |
"type": "line" | |
}, | |
"DOING": { | |
"icon": "feed-rocket", | |
"type": "line" | |
}, | |
"DONE": { | |
"icon": "checklist", | |
"type": "line" | |
} | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment