Extensions

May 23, 2022 ยท View on GitHub

Note: currently it is impossible to have different colours depending on whether the light or dark theme is selected.

Git Graph

Copy and paste the following snippet into your settings.json file:

"git-graph.graph.colours": [
    "#F767BB",
    "#09A1ED",
    "#2DAE58",
    "#CF9C00",
    "#FF5C57",
    "#C75AF3",
    "#A8759A",
    "#6E82A6",
    "#13BBB7",
    "#8CBA10"
],

Todo Tree

Copy and paste the following snippet into your settings.json file:

"todo-tree.general.tags": [
    "TODO",
    "FIXME",
    "BUG",
    "HACK",
    "MAYBE",
    "[ ]",
    "[x]",
],
"todo-tree.highlights.customHighlight": {
    "TODO": {
        "foreground": "#fafbfc",
        "background": "#565869",
        "icon": "checklist",
        "iconColour": "#565869",
        "gutterIcon": true
    },
    "FIXME": {
        "foreground": "#fafbfc",
        "background": "#FF5C57",
        "icon": "tools",
        "iconColour": "#FF5C57",
        "gutterIcon": true
    },
    "BUG": {
        "foreground": "#ffffff",
        "background": "#ff1277",
        "icon": "alert",
        "iconColour": "#ff1278",
        "gutterIcon": true
    },
    "HACK": {
        "foreground": "#fafbfc",
        "background": "#CF9C00",
        "icon": "flame",
        "iconColour": "#CF9C00",
        "gutterIcon": true
    },
    "MAYBE": {
        "foreground": "#fafbfc",
        "background": "#13BBB7",
        "icon": "info",
        "iconColour": "#13BBB7",
        "gutterIcon": true
    },
    "[ ]": {
        "foreground": "#fafbfc",
        "background": "#565869",
        "icon": "checklist",
        "iconColour": "#565869",
        "gutterIcon": true
    },
    "[x]": {
        "foreground": "#2DAE58",
        "background": "#fafbfc",
        "icon": "checklist",
        "iconColour": "#2DAE58",
        "gutterIcon": true
    }
},