1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/plugins/ui/editor.lua: add todo-comments highlight group fallbacks

This commit is contained in:
Henrik Hautakoski 2026-05-17 22:36:49 +02:00
parent bad6b59ab9
commit 6086176d77

View file

@ -37,12 +37,12 @@ return {
-- TODO = { color = "warning" },
},
colors = {
default = { "TodoCommentsDefault", "#7C3AED" },
error = { "TodoCommentsError", "#DC2626" },
warning = { "TodoCommentsWarning", "#FBBF24" },
info = { "TodoCommentsInfo", "#2563EB" },
hint = { "TodoCommentsHint", "#10B981" },
test = { "TodoCommentsTest", "#FF00FF" }
default = { "TodoCommentsDefault", "Identifier", "#7C3AED" },
error = { "TodoCommentsError", "DiagnosticError", "ErrorMsg", "#DC2626" },
warning = { "TodoCommentsWarning", "DiagnosticWarn", "WarningMsg", "#FBBF24" },
info = { "TodoCommentsInfo", "DiagnosticInfo", "#2563EB" },
hint = { "TodoCommentsHint", "DiagnosticHint", "#10B981" },
test = { "TodoCommentsTest", "Identifier", "#FF00FF" }
},
highlight = {
keyword = 'fg',