LunarVim / lunarvim.org

🌐 Website for LunarVim
https://www.lunarvim.org
GNU General Public License v3.0
138 stars 202 forks source link

indent-blankline wrong settings #192

Open kobzar opened 2 years ago

kobzar commented 2 years ago

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

kobzar commented 2 years ago

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 2 years ago

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?

kobzar commented 2 years ago

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