From 03198abc22da72244c6c7b3397e8456d650de3da Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 8 Jan 2024 18:23:30 +0100 Subject: [PATCH] feat: remove indent-blankline --- lua/plugins.lua | 7 ------- lua/plugins/indent-blankline.lua | 12 ------------ 2 files changed, 19 deletions(-) delete mode 100644 lua/plugins/indent-blankline.lua 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