Merge pull request #6 from sashaaKr/move_todo_to_plugins

chore: move comments highlight to a separate plugin
This commit is contained in:
sasha 2025-11-14 19:07:41 +02:00 committed by GitHub
commit 9b1067ccf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 },
},
}