16 lines
281 B
Lua
16 lines
281 B
Lua
-- Todo Comments
|
|
-- 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
|
|
}
|
|
},
|
|
} |