From ea3be3917ff7fb94465124a7d852b1c3c6331c57 Mon Sep 17 00:00:00 2001 From: Zakarya Date: Fri, 18 Apr 2025 17:05:43 -0700 Subject: [PATCH] Removed indent plugin because it's buggy --- lua/plugins/indent.lua | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 lua/plugins/indent.lua diff --git a/lua/plugins/indent.lua b/lua/plugins/indent.lua deleted file mode 100644 index 5b7d551..0000000 --- a/lua/plugins/indent.lua +++ /dev/null @@ -1,10 +0,0 @@ -return { - { - "nvimdev/indentmini.nvim", - config = function() - require("indentmini").setup() - - vim.cmd.highlight("IndentLine guifg=#444444") -- Set indent line color - end, - }, -}