LazyVim-custom/lua/plugins/todo-comments.lua
2024-11-23 22:25:53 +03:00

14 lines
267 B
Lua

-- https://github.com/folke/todo-comments.nvim
-- I'm not used to adding colons after tags
return {
'folke/todo-comments.nvim',
opts = {
highlight = {
pattern = [[.*<(KEYWORDS)\s*]],
},
search = {
pattern = [[\b(KEYWORDS)\b]],
}
}
}