Created
March 17, 2019 23:11
-
-
Save canalesb93/1718d687a423327e590f4cae62ec9361 to your computer and use it in GitHub Desktop.
TODO VSCode Todo Tree Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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, | |
}, | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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!