27 lines
800 B
Lua
27 lines
800 B
Lua
-- https://github.com/folke/todo-comments.nvim
|
|
return {
|
|
"folke/todo-comments.nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
search = {
|
|
command = "rg",
|
|
args = {
|
|
"--color=never",
|
|
"--no-heading",
|
|
"--with-filename",
|
|
"--line-number",
|
|
"--column",
|
|
"--hidden",
|
|
},
|
|
-- regex that will be used to match keywords.
|
|
-- don't replace the (KEYWORDS) placeholder
|
|
pattern = [[\b(KEYWORDS):]], -- ripgrep regex
|
|
-- pattern = [[\b(KEYWORDS)\b]], -- match without the extra colon. You'll likely get false positives
|
|
},
|
|
},
|
|
}
|