lukas-reineke / indent-blankline.nvim

Indent guides for Neovim
MIT License
3.98k stars 99 forks source link

Indents only shown for the current context #850

Closed alwaysamer closed 3 months ago

alwaysamer commented 3 months ago

Problem

The Indents are only shown for the current context ( i suppose thats the correct word ). image

Steps to reproduce

return {
    "lukas-reineke/indent-blankline.nvim",
    main = "ibl",
    opts = {},
    config = function()
        require("ibl").setup()
    end,
}

This is the config i use.

Expected behavior

I would expect the Indents to be shown for every context. Just like here image

Neovim version (nvim -v)

0.9.5

lukas-reineke commented 3 months ago

I suspect the lines are the same color as your background. IBL takes the colors from existing highlight groups, check :help ibl.highlights.

alwaysamer commented 3 months ago

Yep that was it. Didn't think of that.

Thanks! I will close the Issue then :)