diff --git a/init.lua b/init.lua index 15d1ade2..b67c393e 100644 --- a/init.lua +++ b/init.lua @@ -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 'echasnovski/mini.nvim', config = function() diff --git a/lua/custom/plugins/todo-comments.lua b/lua/custom/plugins/todo-comments.lua new file mode 100644 index 00000000..8d7b97a9 --- /dev/null +++ b/lua/custom/plugins/todo-comments.lua @@ -0,0 +1,8 @@ +return { + { + 'folke/todo-comments.nvim', + event = 'VimEnter', + dependencies = { 'nvim-lua/plenary.nvim' }, + opts = { signs = false }, + }, +}