diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index ea9478d..12f0860 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -43,13 +43,22 @@ M.better_escape = function() end M.blankline = function() + vim.g.indent_blankline_show_trailing_blankline_indent = false + vim.g.indent_blankline_show_first_indent_level = false + require("indent_blankline").setup { indentLine_enabled = 1, char = "▏", - indent_blankline_filetype_exclude = { "help", "terminal", "dashboard", "packer" }, + indent_blankline_filetype_exclude = { + "help", + "terminal", + "dashboard", + "packer", + "lspinfo", + "TelescopePrompt", + "TelescopeResults", + }, indent_blankline_buftype_exclude = { "terminal" }, - indent_blankline_show_trailing_blankline_indent = false, - indent_blankline_show_first_indent_level = false, } end