From 7bd974c38ba7197201ba9bafdaafc4c318ad7a06 Mon Sep 17 00:00:00 2001 From: Dev'A'Lot Date: Sun, 8 Oct 2023 18:51:56 +1100 Subject: [PATCH] fix(indent-blankline-nvim): Fix indent-blankline-nvim configuration to match the new plugin requirements (#597) Fix: fix #596; Fix indent-blankline configuration to match the new plugin requirements --- .../indent/indent-blankline-nvim/init.lua | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lua/astrocommunity/indent/indent-blankline-nvim/init.lua b/lua/astrocommunity/indent/indent-blankline-nvim/init.lua index 76dad3ddf..b7d5fb2e0 100644 --- a/lua/astrocommunity/indent/indent-blankline-nvim/init.lua +++ b/lua/astrocommunity/indent/indent-blankline-nvim/init.lua @@ -2,9 +2,17 @@ return { "lukas-reineke/indent-blankline.nvim", event = "User AstroFile", opts = { - char = "│", - filetype_exclude = { "help", "alpha", "dashboard", "neo-tree", "Trouble", "lazy" }, - show_trailing_blankline_indent = false, - show_current_context = false, + indent = { + char = "│", + }, + scope = { + enabled = false, + }, + exclude = { + filetypes = { "help", "alpha", "dashboard", "Trouble", "lazy", "neo-tree" }, + }, + whitespace = { + remove_blankline_trail = true, + }, }, }