Created
June 25, 2020 05:56
-
-
Save winarcooo/f4fc7072bbd775685da2326e9337fea7 to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"window.zoomLevel": 0, | |
"editor.fontSize": 15, | |
"workbench.colorTheme": "Solarized Dark", | |
"workbench.iconTheme": "Monokai Pro (Filter Octagon) Icons", | |
"files.autoSave": "afterDelay", | |
"todo-tree.tree.showScanModeButton": false, | |
"editor.minimap.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"todo-tree.highlights.defaultHighlight": { | |
"icon": "pin", | |
"type": "text", | |
"foreground": "red", | |
"background": "white", | |
"opacity": 50, | |
"iconColour": "green" | |
}, | |
"todo-tree.highlights.customHighlight": { | |
"BUG": { | |
"icon": "bug", | |
"type": "text", | |
"iconColour": "red", | |
"foreground": "white", | |
"background": "red", | |
}, | |
"OPTIMIZE": { | |
"icon": "sync", | |
"type": "text", | |
"iconColour": "blue", | |
"foreground": "grey", | |
"background": "blue", | |
"opacity": 50, | |
}, | |
"TODO": { | |
"icon": "check", | |
"type": "text", | |
"iconColour": "pink", | |
"foreground": "white", | |
"background": "grey", | |
"opacity": 50, | |
}, | |
"FIXME": { | |
"icon": "alert", | |
"type": "text", | |
"iconColour": "yellow", | |
"foreground": "white", | |
"background": "yellow", | |
"opacity": 50, | |
}, | |
"COMPLETE": { | |
"type": "text", | |
"icon": "verified", | |
"foreground": "white", | |
"iconColour": "green", | |
"background": "green", | |
"opacity": 50, | |
} | |
}, | |
"todo-tree.general.tags": [ | |
"XXX", | |
"TODO", | |
"HACK", | |
"FIXME", | |
"COMPLETE", | |
"BUG", | |
"OPTIMIZE" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment