From fc1bafc5906e87b01cb3642c932592db06ddb5e1 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 21 Jul 2025 05:50:32 +0200 Subject: [PATCH] nvim/lua/user/plugins/ui/editor.lua: update todo-comments settings --- nvim/lua/user/plugins/ui/editor.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nvim/lua/user/plugins/ui/editor.lua b/nvim/lua/user/plugins/ui/editor.lua index 6d01b50..ab371c9 100644 --- a/nvim/lua/user/plugins/ui/editor.lua +++ b/nvim/lua/user/plugins/ui/editor.lua @@ -34,7 +34,15 @@ return { opts = { signs = false, keywords = { - TODO = { color = "warning" }, + -- TODO = { color = "warning" }, + }, + colors = { + default = { "TodoCommentsDefault", "#7C3AED" }, + error = { "TodoCommentsError", "#DC2626" }, + warning = { "TodoCommentsWarning", "#FBBF24" }, + info = { "TodoCommentsInfo", "#2563EB" }, + hint = { "TodoCommentsHint", "#10B981" }, + test = { "TodoCommentsTest", "#FF00FF" } }, highlight = { keyword = 'fg',