local g = vim.g g.indent_blankline_char = "▏" g.indent_blankline_context_char = "▏" -- Disable indent-blankline on these pages. g.indent_blankline_filetype_exclude = { "help", "terminal", "dashboard", "packer", "lsp-installer", "lspinfo", } g.indent_blankline_buftype_exclude = { "terminal" } g.indent_blankline_show_trailing_blankline_indent = false g.indent_blankline_show_first_indent_level = true require("indent_blankline").setup({ space_char_blankline = " ", show_current_context = true, show_current_context_start = true, })