17 lines
426 B
Lua
17 lines
426 B
Lua
|
|
return {
|
||
|
|
{
|
||
|
|
"folke/todo-comments.nvim",
|
||
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||
|
|
config = function()
|
||
|
|
require("todo-comments").setup({
|
||
|
|
keywords = {
|
||
|
|
FIX = { icon = " ", color = "error", alt = { "BUG", "FIXME" } },
|
||
|
|
TODO = { icon = " ", color = "info" },
|
||
|
|
HACK = { icon = " ", color = "warning" },
|
||
|
|
NOTE = { icon = " ", color = "hint", alt = { "INFO" } },
|
||
|
|
}
|
||
|
|
})
|
||
|
|
end,
|
||
|
|
}
|
||
|
|
}
|