Hey there!
For some reason I redo my vscode settings again lmao
{
    "explorer.openEditors.visible": 0,
    "editor.fontFamily": "JetBrains Mono",
    "editor.fontSize": 13,
    "editor.fontWeight": "300", 
    "editor.letterSpacing": 1.2,
    "editor.lineHeight": 22,
    "editor.fontLigatures": true,
    "files.autoSave": "afterDelay",
    "window.zoomLevel": 0,
    "C_Cpp.updateChannel": "Insiders",
    "workbench.colorTheme": "Dark hacker theme",
    "breadcrumbs.enabled": false,
    "customizeUI.font.regular": "JetBrains Mono",
    "explorer.confirmDelete": false,
    "editor.formatOnSave": true,
    "editor.formatOnPaste": true,
    "workbench.editor.highlightModifiedTabs": true,
    "editor.cursorBlinking": "smooth",
    "explorer.sortOrder": "type",
    "todo-tree.tree.showScanModeButton": true,
    "todo-tree.highlights.enabled": true,
    "workbench.statusBar.visible": true,
    "todo-tree.tree.autoRefresh": true,
    "todo-tree.highlights.defaultHighlight": {
        "type": "text-and-comment"
    },
    "todo-tree.highlights.customHighlight": {
        "TODO": {
            "foreground": "black",
            "background": "green",
            "iconColour": "green",
            "icon": "check",
            "type": "text"
        },
        "FIXME": {
            "foreground": "black",
            "background": "red",
            "iconColour": "red",
            "icon": "bug"
        },
        "REVIEW": {
            "foreground": "black",
            "background": "cyan",
            "iconColour": "lightblue",
            "icon": "eye"
        },
        "HACK": {
            "foreground": "black",
            "background": "#FFA500",
            "iconColour": "orange",
            "icon": "alert"
        },
        "REF": {
            "foreground": "black",
            "background": "grey",
            "iconColour": "grey",
            "icon": "link",
            "type": "tag"
        }
    },
    "todo-tree.general.tags": [
        "TODO",
        "FIXME",
        "REVIEW",
        "HACK",
        "REF"
    ]
}
    
Top comments (1)
By the way if you want you can even add some new tags yourself
{
"explorer.openEditors.visible": 0,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 13,
"editor.fontWeight": "300",
"editor.letterSpacing": 1.2,
"editor.lineHeight": 22,
"editor.fontLigatures": true,
"files.autoSave": "afterDelay",
"window.zoomLevel": 0,
"C_Cpp.updateChannel": "Insiders",
"workbench.colorTheme": "Dark hacker theme",
"breadcrumbs.enabled": false,
"customizeUI.font.regular": "JetBrains Mono",
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"workbench.editor.highlightModifiedTabs": true,
"editor.cursorBlinking": "smooth",
"explorer.sortOrder": "type",
"todo-tree.tree.showScanModeButton": true,
"todo-tree.highlights.enabled": true,
"workbench.statusBar.visible": true,
"todo-tree.tree.autoRefresh": true,
"todo-tree.highlights.defaultHighlight": {
"type": "text-and-comment"
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"foreground": "black",
"background": "green",
"iconColour": "green",
"icon": "check",
"type": "text"
},
"FIXME": {
"foreground": "black",
"background": "red",
"iconColour": "red",
"icon": "bug"
},
"REVIEW": {
"foreground": "black",
"background": "cyan",
"iconColour": "lightblue",
"icon": "eye"
},
"HACK": {
"foreground": "black",
"background": "#FFA500",
"iconColour": "orange",
"icon": "alert"
},
"REF": {
"foreground": "black",
"background": "grey",
"iconColour": "grey",
"icon": "link",
"type": "tag"
},
"TRY": {
"foreground": "black",
"background": "#eb8c34",
"iconColour": "green",
"icon": "question",
"type": "text"
},
},
"todo-tree.general.tags": [
"TODO",
"FIXME",
"REVIEW",
"HACK",
"REF",
"TRY"
]
}
I added a TRY tag