Skip to content

Instantly share code, notes, and snippets.

@bunsyy
Created November 20, 2024 09:35
Show Gist options
  • Save bunsyy/658ebbfa7f05b73a66c16022a1a7e4f3 to your computer and use it in GitHub Desktop.
Save bunsyy/658ebbfa7f05b73a66c16022a1a7e4f3 to your computer and use it in GitHub Desktop.
Custom Todo Highlight and Todo Tree in VSCode
{
"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