23 lines
433 B
Lua
23 lines
433 B
Lua
-- todo-comments
|
|
--
|
|
-- todo-comments is a lua plugin for Neovim >= 0.8.0 to highlight
|
|
-- and search for todo comments like TODO, HACK, BUG in your code base.
|
|
--
|
|
-- https://github.com/folke/todo-comments.nvim
|
|
--
|
|
|
|
return {
|
|
-- Highlight todo, notes, etc in comments
|
|
{
|
|
'folke/todo-comments.nvim',
|
|
event = 'VimEnter',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
},
|
|
opts = {
|
|
signs = false,
|
|
},
|
|
},
|
|
}
|
|
|