Skip to content

Instantly share code, notes, and snippets.

@icebeat
Created March 15, 2023 14:03
Show Gist options
  • Save icebeat/60477066b704989a28d7a499117117ea to your computer and use it in GitHub Desktop.
Save icebeat/60477066b704989a28d7a499117117ea to your computer and use it in GitHub Desktop.
VSCODE extensions
{
"indentRainbow.indicatorStyle": "light",
"indentRainbow.lightIndicatorStyleLineWidth": 1,
"indentRainbow.colors": [
"rgba(255,255,64,0.15)",
"rgba(127,255,127,0.15)",
"rgba(255,127,255,0.15)",
"rgba(79,236,236,0.15)"
],
"todo-tree.highlights.enabled": true,
"todo-tree.general.revealBehaviour": "end of todo",
"todo-tree.filtering.ignoreGitSubmodules": true,
"todo-tree.general.tags": [
"BUG",
"TODO",
"[ ]",
"[x]",
"FIX",
"LINK",
"ISSUE",
"REDO",
"FEATURE"
],
"todo-tree.tree.labelFormat": "${after}",
"todo-tree.regex.subTagRegex": "^:s*",
"todo-tree.highlights.defaultHighlight": {
"type": "tag",
"gutterIcon": true
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "issue-opened",
"iconColour": "#1d9bf0",
"foreground": "#1d9bf0",
"background": "#1d9bf010"
},
"[ ]": {
"icon": "issue-draft",
"iconColour": "#777777",
"foreground": "#777777",
"background": "#77777710"
},
"[x]": {
"icon": "check-circle",
"iconColour": "#32CD32",
"foreground": "#32CD32",
"background": "#32CD3210"
},
"BUG": {
"icon": "bug",
"iconColour": "#d0037c",
"foreground": "#d0037c",
"background": "#d0037c10"
},
"FIX": {
"icon": "flame",
"iconColour": "#FF424D",
"foreground": "#FF424D",
"background": "#FF424D10"
},
"LINK": {
"icon": "globe",
"iconColour": "#63b6d6",
"foreground": "#63b6d6",
"background": "#63b6d610"
},
"ISSUE": {
"icon": "megaphone",
"iconColour": "#6667ab",
"foreground": "#6667ab",
"background": "#6667ab10"
},
"REDO": {
"icon": "zap",
"iconColour": "#CCA753",
"foreground": "#CCA753",
"background": "#CCA75310"
},
"FEATURE": {
"icon": "rocket",
"iconColour": "#2de38E",
"foreground": "#2de38E",
"background": "#2de38E10"
}
}
}
@icebeat
Copy link
Author

icebeat commented Mar 15, 2023

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