23 lines
436 B
Lua
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
|
|
}
|