From 6c17785f7334d1473a65e86cca4b3c6a13a7e2c1 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Mon, 12 Jun 2023 11:19:22 +0100 Subject: [PATCH] Highlight [!], [!!], [!!!] --- roles/home-gui/files/vscode-settings.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/roles/home-gui/files/vscode-settings.json b/roles/home-gui/files/vscode-settings.json index 5586977..654fd57 100644 --- a/roles/home-gui/files/vscode-settings.json +++ b/roles/home-gui/files/vscode-settings.json @@ -21,12 +21,27 @@ "terminal.integrated.enablePersistentSessions": false, "terminal.integrated.shellIntegration.history": 0, "todo-tree.general.tags": [ + "[!!!]", + "[!!]", + "[!]", + "DONE", "TODO", "WAIT", - "WORK", - "DONE" + "WORK" ], "todo-tree.highlights.customHighlight": { + "[!!!]": { + "fontWeight": "bold", + "foreground": "#ffc000" + }, + "[!!]": { + "fontWeight": "bold", + "foreground": "#ffc000" + }, + "[!]": { + "fontWeight": "bold", + "foreground": "#ffc000" + }, "DONE": { "foreground": "#c0c0c0" },