From 4d32d464ba95f809889e187fde084bccd6bc1f61 Mon Sep 17 00:00:00 2001 From: leafee98 Date: Wed, 20 Dec 2023 16:39:43 +0800 Subject: [PATCH] config: indent-blankline no showing underline at start/end --- lua/plugins/10-editor.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lua/plugins/10-editor.lua b/lua/plugins/10-editor.lua index 66ab4b9..397b810 100644 --- a/lua/plugins/10-editor.lua +++ b/lua/plugins/10-editor.lua @@ -17,7 +17,12 @@ return { "lukas-reineke/indent-blankline.nvim", main = "ibl", event = "VeryLazy", - opts = { }, + opts = { + scope = { + show_start = false, + show_end = false, + }, + }, }, { "famiu/bufdelete.nvim",