neovim-config/lua/plugins/comments.lua

17 lines
426 B
Lua
Raw Permalink Normal View History

2025-10-22 06:57:49 +02:00
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,
}
}