From f0a845b93756c212b5856ce0cedb66ce98846251 Mon Sep 17 00:00:00 2001 From: Simon Lasbrugnas Date: Mon, 4 Nov 2024 14:21:29 +0100 Subject: [PATCH] chore(ibl): add tab_char and show current scope more clearly --- lua/plugins/editor.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 6578f52..684d549 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -27,13 +27,17 @@ return { opts = {}, config = function() require("ibl").setup { + debounce = 100, indent = { char = "▏", + tab_char = "▏", + highlight = { "VertSplit" }, }, scope = { enabled = true, show_start = false, show_end = false, + highlight = "LineNr", }, } end,