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, + }, }, }