Files
dotfiles/roles/nvim/files/lua/config/plugins/todo-comments.lua
2025-09-06 15:44:39 +02:00

23 lines
436 B
Lua

return {
'folke/todo-comments.nvim',
dependencies = { 'nvim-lua/plenary.nvim' },
lazy = false,
config = function()
require("todo-comments").setup({
-- keywords = {
-- TODO = { icon = " ", color = "custom" },
-- },
-- colors = {
-- custom = { fg = "#FF0000", bg = "#000000" },
-- },
highlight = {
pattern = [[.*<(KEYWORDS)\s*]],
},
search = {
pattern = [[\b(KEYWORDS)\b]],
}
})
end
}