This commit is contained in:
2025-08-28 23:17:34 +02:00
parent fe3886fbdf
commit 20a49c3f58
31 changed files with 440 additions and 117 deletions

View File

@@ -1,5 +1,10 @@
-- Todo Comments
-- 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
@@ -7,10 +12,11 @@ return {
'folke/todo-comments.nvim',
event = 'VimEnter',
dependencies = {
'nvim-lua/plenary.nvim'
'nvim-lua/plenary.nvim',
},
opts = {
signs = false
}
signs = false,
},
},
}
}