Skip to content

Instantly share code, notes, and snippets.

@disouzam
Last active July 14, 2026 11:28
Show Gist options
  • Select an option

  • Save disouzam/4eb815a4aa9dbd57846075ed8acd76bd to your computer and use it in GitHub Desktop.

Select an option

Save disouzam/4eb815a4aa9dbd57846075ed8acd76bd to your computer and use it in GitHub Desktop.
Better Todo Tree VS Code extension settings
{
"better-todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]",
"noqa"
],
"better-todo-tree.general.tagGroups": {
"Linter Issues": [
"noqa",
]
},
"better-todo-tree.general.statusBar": "top three",
"better-todo-tree.highlights.defaultHighlight": {
"foreground": "#000000",
"background": "#FFFF00",
"borderRadius": "10px",
"rulerLane": "left",
"rulerColour": "#00aeff",
"iconColour": "#00aeff",
"gutterIcon": true,
},
"better-todo-tree.highlights.customHighlight": {
"BUG": {
"icon": "bug"
},
"HACK": {
"icon": "tools"
},
"FIXME": {
"icon": "flame"
},
"XXX": {
"icon": "x"
},
"[ ]": {
"icon": "issue-draft"
},
"[x]": {
"icon": "issue-closed"
},
"TODO": {
"icon": "tasklist",
"iconColour": "#8b0909",
"rulerColour": "#8b0909",
},
"Linter Issues": {
"icon": "code-review",
"iconColour": "#FF0000",
"rulerColour": "#FF0000",
}
},
"better-todo-tree.filtering.includeGlobs": [
"**/*.bas",
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.css",
"**/*.scss",
"**/*.php",
"**/*.rb",
"**/*.txt",
"**/*.mdown",
"**/*.py",
"**/*.ipynb",
"**/*.md"
]
}
@disouzam

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment