Created
May 29, 2023 13:11
-
-
Save MaddyGuthridge/62689840b890e6a06dfac9b11c42969e to your computer and use it in GitHub Desktop.
My custom Todo Tree extension settings
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
{ | |
"todo-tree.highlights.defaultHighlight": { | |
"foreground": "white", | |
"background": "#00000000" | |
}, | |
"todo-tree.highlights.useColourScheme": false, | |
"todo-tree.general.tags": [ | |
"BUG", | |
"FIXME", | |
"BROKEN", | |
"KNOWN ISSUE", | |
"KNOWN ISSUES", | |
"HACK", | |
"TODO", | |
"TODO(migue)", | |
"INVESTIGATE", | |
"[ ]", | |
"[x]", | |
"[X]", | |
"WARNING", | |
"NOTE", | |
"NOTES", | |
"HELP WANTED", | |
"CHECK THIS", | |
"CHECK", | |
"REMARK", | |
"IDEA", | |
"HINT", | |
"BRUH MOMENT", | |
], | |
"todo-tree.general.tagGroups": { | |
"BUG": [ | |
"BUG", | |
"FIXME", | |
"BROKEN", | |
"KNOWN ISSUE", | |
"KNOWN ISSUES", | |
], | |
"HACK": [ | |
"HACK", | |
], | |
"TODO": [ | |
"TODO", | |
"TODO(migue)", | |
"[ ]", | |
"INVESTIGATE", | |
], | |
"DONE": [ | |
"[x]", | |
"[X]", | |
], | |
"WARNING": [ | |
"WARNING", | |
"BRUH MOMENT", | |
], | |
"NOTE": [ | |
"NOTE", | |
"NOTES", | |
], | |
"HELP WANTED": [ | |
"HELP WANTED", | |
], | |
"CHECK": [ | |
"CHECK THIS", | |
"CHECK", | |
], | |
"REMARK": [ | |
"REMARK", | |
], | |
"IDEA": [ | |
"IDEA", | |
"HINT", | |
] | |
}, | |
"todo-tree.highlights.customHighlight": { | |
"BUG": { | |
"foreground": "#ff0000", | |
"icon": "bug", | |
"iconColour": "#ff0000", | |
"gutterIcon": true, | |
"rulerLane":"center", | |
"rulerColour": "#ff0000" | |
}, | |
"HACK": { | |
"foreground": "#ffff00", | |
"icon": "zap", | |
"iconColour": "#ffff00", | |
"rulerLane":"center", | |
"rulerColour": "#ffff00" | |
}, | |
"TODO": { | |
"foreground": "#ff00ff", | |
"icon": "check", | |
"iconColour": "#ff00ff", | |
"gutterIcon": true, | |
"rulerLane":"center", | |
"rulerColour": "#ff00ff", | |
}, | |
"DONE": { | |
"foreground": "lime", | |
"icon": "check", | |
"iconColour": "lime", | |
"gutterIcon": true, | |
}, | |
"NOTE": { | |
"foreground": "lime", | |
"icon": "note", | |
"iconColour": "lime", | |
}, | |
"WARNING": { | |
"foreground": "orange", | |
"icon": "alert", | |
"iconColour": "orange", | |
"gutterIcon": true, | |
"rulerLane":"center", | |
"rulerColour": "orange" | |
}, | |
"HELP WANTED": { | |
"foreground": "cyan", | |
"icon": "people", | |
"iconColour": "cyan", | |
}, | |
"CHECK": { | |
"foreground": "orange", | |
"icon": "zap", | |
"iconColour": "orange", | |
"gutterIcon": true, | |
"rulerLane":"center", | |
"rulerColour": "orange" | |
}, | |
"REMARK": { | |
"foreground": "pink", | |
"icon": "comment", | |
"iconColour": "pink", | |
"gutterIcon": true, | |
}, | |
"IDEA": { | |
"foreground": "#FFFFFF", | |
"icon": "heart", | |
"iconColour": "#FFFFFF", | |
"gutterIcon": true, | |
} | |
}, | |
"todo-tree.tree.hideIconsWhenGroupedByTag": true, | |
"todo-tree.highlights.highlightDelay": 10, | |
"todo-tree.highlights.backgroundColourScheme": [ | |
"#00000000" | |
], | |
"todo-tree.highlights.foregroundColourScheme": [ | |
"white" | |
], | |
"todo-tree.filtering.scopes": [], | |
"todo-tree.filtering.ignoreGitSubmodules": true, | |
"todo-tree.regex.regex": "(//|\\*|#|<!--|;|%|/\\*|^|^[ \\t]*(-|\\d+.))\\s*($TAGS)(\\s|:)", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment