From ed2410d4e86f9dfff736948d75dd5ad9381fb068 Mon Sep 17 00:00:00 2001 From: Lorne Stalker Date: Sat, 14 Oct 2023 17:04:16 +0100 Subject: [PATCH] updating dependencies and config --- lua/lornest/plugins/indent-blankline.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lua/lornest/plugins/indent-blankline.lua b/lua/lornest/plugins/indent-blankline.lua index 8149a398..45f2d2af 100644 --- a/lua/lornest/plugins/indent-blankline.lua +++ b/lua/lornest/plugins/indent-blankline.lua @@ -1,9 +1,11 @@ return { - -- Add indentation guides even on blank lines 'lukas-reineke/indent-blankline.nvim', - -- See `:help indent_blankline.txt` + main = 'ibl', opts = { - char = '┊', - show_trailing_blankline_indent = false, + indent = { char = '┊' }, + scope = { + enabled = true, + highlight = { "Function", "Label" }, + }, }, }