Files
dotfiles/nvim/lua/config/plugins/todo-comments.lua
Johannes Knopp 5048949d2a misc settings
2025-01-13 22:19:32 +01: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
}