diff --git a/lua/plugins.lua b/lua/plugins.lua index faee850..e2f5fed 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -139,13 +139,6 @@ local plugins = { lazy = true, event = "VimEnter", }, - { - "lukas-reineke/indent-blankline.nvim", - main = "ibl", - config = require("plugins.indent-blankline"), - lazy = true, - event = "VimEnter", - }, { "simeji/winresizer", config = require("plugins.winresizer"), diff --git a/lua/plugins/indent-blankline.lua b/lua/plugins/indent-blankline.lua deleted file mode 100644 index 0c5c3c9..0000000 --- a/lua/plugins/indent-blankline.lua +++ /dev/null @@ -1,12 +0,0 @@ -local function setup() - require("ibl").setup({ - enabled = true, - scope = { - enabled = false, - show_start = false, - show_end = false, - }, - }) -end - -return setup