Skip to content

Instantly share code, notes, and snippets.

@canalesb93
Created March 17, 2019 23:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canalesb93/1718d687a423327e590f4cae62ec9361 to your computer and use it in GitHub Desktop.
Save canalesb93/1718d687a423327e590f4cae62ec9361 to your computer and use it in GitHub Desktop.
TODO VSCode Todo Tree Settings
// TO-DO Tree Extension
"todo-tree.expanded": true,
"todo-tree.tags": [
"TODO",
"FIXME",
"OPTIMIZE",
"STOPSHIP"
],
"todo-tree.customHighlight": {
"TODO": {
"type": "text",
"foreground": "#72a8ff",
},
"FIXME": {
"icon": "alert",
"type": "text",
"foreground": "#d6c61b",
"background": "white",
"opacity": 10,
},
"OPTIMIZE": {
"icon": "dashboard",
"type": "text",
"foreground": "#0bb710",
"background": "white",
"opacity": 10,
},
"STOPSHIP": {
"icon": "flame",
"type": "text",
"foreground": "#b70b0b",
"background": "white",
"opacity": 10,
},
},
@martiiis
Copy link

martiiis commented May 2, 2021

Hi, thanks for this. I see my notes from todo tree on my web once I load it. Is there any way to keep the notes only inside the HTML/CSS file on VS code?
Thanks!

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