From c5b2d56ca133474f1803467e046a98bed3274b85 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sun, 5 Nov 2023 12:32:04 +0100 Subject: update indent-blankline --- .../lua/plugins/eyecandy/indent-blankline.lua | 29 +++++++++++++++------- 1 file changed, 20 insertions(+), 9 deletions(-) (limited to 'public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua') diff --git a/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua b/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua index 618c730..8756757 100644 --- a/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua +++ b/public/nvim/.nvim/lua/plugins/eyecandy/indent-blankline.lua @@ -1,11 +1,22 @@ return { - "lukas-reineke/indent-blankline.nvim", - event = { "BufRead" }, - config = function() - require("indent_blankline").setup({ - show_current_context = true, - show_current_context_start = false, - }) - end, - dependencies = { "nvim-treesitter" }, + "lukas-reineke/indent-blankline.nvim", + event = { "BufRead" }, + main = "ibl", + opts = { + indent = { + char = "▏", + tab_char = "▏", + }, + scope = { + enabled = true, + show_start = true, + show_end = true, + exclude = { + language = { + "help", + }, + }, + }, + }, + dependencies = { "nvim-treesitter" }, } -- cgit v1.2.3