Add: first import

This commit is contained in:
DuN0z 2025-10-22 06:57:49 +02:00
commit 82641f61be
23 changed files with 800 additions and 0 deletions

16
lua/plugins/comments.lua Normal file
View file

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