chore: move comments highlight to a separate plugin

This commit is contained in:
Test User 2025-11-14 19:05:57 +02:00
parent 79c3b120a5
commit 6f12afbce0
2 changed files with 8 additions and 3 deletions

View File

@ -888,9 +888,6 @@ require('lazy').setup({
}, },
}, },
-- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
{ -- Collection of various small independent plugins/modules { -- Collection of various small independent plugins/modules
'echasnovski/mini.nvim', 'echasnovski/mini.nvim',
config = function() config = function()

View File

@ -0,0 +1,8 @@
return {
{
'folke/todo-comments.nvim',
event = 'VimEnter',
dependencies = { 'nvim-lua/plenary.nvim' },
opts = { signs = false },
},
}