ref(nvim): redid plugin config system

This commit is contained in:
Léana 江 2024-01-26 10:46:05 +01:00 committed by Léana 江
parent d5406b8487
commit 56336c8e5e
14 changed files with 16 additions and 0 deletions

View file

@ -1,11 +0,0 @@
require "todo-comments".setup {
keywords = {
FIX = { icon = "", color = "error", alt = { "FIXME", "BUG", "FIXIT", "ISSUE" } },
TODO = { icon = "", color = "info" },
HACK = { icon = "!", color = "warning", alt = { "DEBUG" } },
WARN = { icon = "!", color = "warning", alt = { "WARNING", "XXX" } },
NOTE = { icon = "·", color = "hint", alt = { "INFO" } },
TEST = { icon = "T", color = "test", alt = { "TESTING", "PASSED", "FAILED" } },
Q = { icon = "?", color = "warning" },
},
}