From 59f4e96d11eddc1511a819a753148b930ebcddac Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Mon, 19 May 2025 00:12:20 +0100 Subject: [PATCH] Remove the correct plugin --- lua/plugins/misc.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/plugins/misc.lua b/lua/plugins/misc.lua index ca6e53d..f877262 100644 --- a/lua/plugins/misc.lua +++ b/lua/plugins/misc.lua @@ -22,11 +22,11 @@ return { opts = {}, }, { - -- High-performance color highlighter - 'norcalli/nvim-colorizer.lua', - config = function() - require('colorizer').setup() - end, + -- Highlight todo, notes, etc in comments + 'folke/todo-comments.nvim', + event = 'VimEnter', + dependencies = { 'nvim-lua/plenary.nvim' }, + opts = { signs = false }, }, { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } }, {