ref(nvim): use after/plugin (faster)

This commit is contained in:
Léana 江 2024-02-10 18:20:34 +01:00 committed by Léana 江
parent 54a64a534c
commit 90980cb81a
20 changed files with 4 additions and 48 deletions

View file

@ -0,0 +1,11 @@
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" },
},
}