nvim/lua/custom/plugins/todo-comments.lua
2025-08-17 17:21:32 +02:00

13 lines
422 B
Lua

return {
"folke/todo-comments.nvim",
dependencies = "nvim-lua/plenary.nvim",
lazy = true, --optional
event = { "BufReadPost", "BufWritePost", "BufNewFile" },
config = function()
require("todo-comments").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end,
}