Last active
May 22, 2022 19:48
-
-
Save azinit/e4dcec6cb47854c0ddc1f34799ccc9a5 to your computer and use it in GitHub Desktop.
Settings for Todo Tree VSCode Extension https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree
This file contains 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
"todo-tree.regex.regex": "(//|\\*)\\s*($TAGS).*(\\n\\s*//\\s{2,}.*)*", | |
"todo-tree.general.tags": [ | |
"TODO", | |
"FIXME", | |
"BUG", | |
"NOTE", | |
"!!!", | |
], | |
"todo-tree.highlights.defaultHighlight": { | |
"type": "whole-line", | |
"gutterIcon": true, | |
"background": "#000", | |
"opacity": 20, | |
}, | |
"todo-tree.highlights.customHighlight": { | |
"TODO": { | |
"foreground": "#4afff6", | |
"icon": "check-circle-fill-16", | |
"opacity": 30, | |
}, | |
"FIXME": { | |
"icon": "alert", | |
"foreground": "#c2ac8d", | |
"iconColour": "#c2ac8d", | |
}, | |
"BUG": { | |
"foreground": "#a86559", | |
"icon": "bug", | |
}, | |
"NOTE": { | |
"icon": "note", | |
"foreground": "grey", | |
"iconColour": "grey", | |
"opacity": 10, | |
}, | |
"!!!": { | |
"icon": "flame", | |
"foreground": "#c4371f", | |
"iconColour": "#c4371f", | |
"background": "#54160b", | |
}, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment