14 lines
267 B
Lua
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]],
|
|
}
|
|
}
|
|
}
|