Skip to content

Instantly share code, notes, and snippets.

@anuragvohraec
Created April 8, 2020 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anuragvohraec/3d155df5593cc3ef2892fa1c424dea92 to your computer and use it in GitHub Desktop.
Save anuragvohraec/3d155df5593cc3ef2892fa1c424dea92 to your computer and use it in GitHub Desktop.
VSCODE workspace
{
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"REMOVE"
],
"todo-tree.highlights.defaultHighlight": {
"icon": "alert",
"type": "text"
},
"todo-tree.highlights.customHighlight": {
"TODO": {
"icon": "check",
"iconColour": "#00ff23",
"type": "line",
"foreground": "black",
"background" : "yellow"
},
"FIXME": {
"foreground": "black",
"background" : "yellow",
"iconColour": "yellow",
"gutterIcon": true
},
"REMOVE":{
"icon": "x",
"iconColour": "red",
"type": "line",
"foreground": "black",
"background" : "red"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment