Last active
September 4, 2024 04:17
-
-
Save TheBrenny/689bfd70090b5f0a58b361c6a92f7b36 to your computer and use it in GitHub Desktop.
My TodoTree 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.enabled": true, | |
"todo-tree.regex.regex": "(^[\\t ]*?)?(//|#|<!--|;|/\\*|\\s*(-|\\d+.))\\s*?($TAGS).*$", | |
"todo-tree.general.tags": [ | |
"FIXME", | |
"FUCK", | |
"BUG", | |
"BUG/SQUASHED", | |
"HACK", | |
"TODO", | |
"MAYBE", | |
"[ ]", | |
"[x]" | |
], | |
"todo-tree.general.tagGroups": { | |
"BUG/SQUASHED": [ | |
"BUG/SQUASHED", | |
"BUG/SQUASH", | |
"BUG/DONE", | |
"SQUASHED", | |
], | |
"FIXME": [ | |
"FIXME", | |
"FUCK", | |
] | |
}, | |
"todo-tree.highlights.defaultHighlight": { | |
"opacity": 100, | |
"fontWeight": "normal", | |
"fontStyle": "italic", | |
"textDecoration": "none", | |
"borderRadius": "0.2em", | |
"gutterIcon": true, | |
"rulerColour": "#ec407a", | |
"rulerOpacity": 40, | |
"rulerLane": "left", | |
"type": "text-and-comment", | |
"hideFromTree": false, | |
"hideFromStatusBar": true, | |
}, | |
"todo-tree.highlights.customHighlight": { | |
"FIXME": { | |
"foreground": "#000000", | |
"background": "#f44336", | |
"fontWeight": "bold", | |
"icon": "flame", | |
"iconColour": "#f44336", | |
"textDecoration": "#d50000 underline wavy", | |
"rulerColour": "#f44336", | |
"rulerOpacity": 100, | |
"hideFromStatusBar": false, | |
}, | |
"BUG": { | |
"foreground": "#000000", | |
"background": "#ff9800", | |
"icon": "bug", | |
"iconColour": "#ff9800", | |
"hideFromStatusBar": false, | |
}, | |
"BUG/SQUASHED": { | |
"foreground": "#FFFFFF22", | |
"background": "#00000000", | |
// "icon": "bug", | |
"iconColour": "#00000000", | |
"hideFromStatusBar": true, | |
}, | |
"HACK": { | |
"foreground": "#000000", | |
"background": "#fbc02d", | |
"icon": "cpu", | |
"iconColour": "#fbc02d", | |
}, | |
"TODO": { | |
"foreground": "#000000", | |
"background": "#4caf50", | |
"icon": "report", | |
"iconColour": "#4caf50", | |
"hideFromStatusBar": false, | |
}, | |
"MAYBE": { | |
"foreground": "#000000", | |
"background": "#9474cc", | |
"icon": "question", | |
"iconColour": "#9474cc", | |
}, | |
"[ ]": { | |
"foreground": "#000000", | |
"background": "#2196f3", | |
"icon": "circle", | |
"iconColour": "#2196f3", | |
}, | |
"[x]": { | |
"foreground": "#8a8a8a", | |
"background": "#00000000", | |
"icon": "check-circle-fill", | |
"iconColour": "#2196f3", | |
"hideFromActivityBar": true, | |
"hideFromStatusBar": true, | |
"hideFromTree": true, | |
}, | |
}, | |
"todo-tree.highlights.useColourScheme": true, | |
"todo-tree.general.statusBar": "tags", | |
"todo-tree.general.debug": true, | |
"todo-tree.regex.subTagRegex": "^\\s*?(\\[.*?\\])$", | |
"todo-tree.tree.labelFormat": "${tag} ${subtag} ${after}", | |
"todo-tree.tree.showCountsInTree": true, | |
"todo-tree.general.showIconsInsteadOfTagsInStatusBar": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment