LunarVim/lunarvim.org

indent-blankline wrong settings

kobzar opened this issue · 3 comments

Problem description

Please, update on the docs setting tabs for this plugin
The next settings is true (without it we have broken start screen)

{
"lukas-reineke/indent-blankline.nvim",
event = "BufRead",
setup = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = "‚ñè"
vim.g.indent_blankline_filetype_exclude = { "help", "terminal", "dashboard", "lspinfo" }
vim.g.indent_blankline_buftype_exclude = { "terminal", "dashboard", "nofile", "quickfix" }
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
vim.g.indent_blankline_show_current_context = true
vim.g.indent_blankline_show_current_context_start = true
end
},

LunarVim version

last

Neovim version (>= 0.7)

7

Operating system/version

Any

Steps to reproduce

No response

support info

:)

Screenshots

No response

This plugin support config options
please update it

  {
    "lukas-reineke/indent-blankline.nvim",
    event = "BufRead",
    config = function()
      require("indent_blankline").setup({
        -- for example, context is off by default, use this to turn it on
        filetype_exclude = { "help", "terminal", "dashboard", "lspinfo" },
        buftype_exclude = { "terminal", "dashboard", "nofile", "quickfix" },
        show_trailing_blankline_indent = false,
        show_first_indent_level = false,
        show_current_context = true,
        show_current_context_start = true,
      })
    end,
  },

b4rlw commented

I can't get highlighting of the current context even with a fresh install of LunarVIm and using the above settings.
Bug or am I missing something?

Run :PackerCompile
restart lvim
attach the screen if problem will present