Skip to content

Commit 9b1067c

Browse files
authored
Merge pull request #6 from sashaaKr/move_todo_to_plugins
chore: move comments highlight to a separate plugin
2 parents 79c3b12 + 6f12afb commit 9b1067c

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

init.lua

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -888,9 +888,6 @@ require('lazy').setup({
888888
},
889889
},
890890

891-
-- Highlight todo, notes, etc in comments
892-
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
893-
894891
{ -- Collection of various small independent plugins/modules
895892
'echasnovski/mini.nvim',
896893
config = function()
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
return {
2+
{
3+
'folke/todo-comments.nvim',
4+
event = 'VimEnter',
5+
dependencies = { 'nvim-lua/plenary.nvim' },
6+
opts = { signs = false },
7+
},
8+
}

0 commit comments

Comments
 (0)