github-nvim-theme icon indicating copy to clipboard operation
github-nvim-theme copied to clipboard

Indent-blankline.nvim supported?

Open tjamesmac opened this issue 3 years ago • 0 comments

Hey I love the plugin! I've been using it for a while and have recently added indent-blankline to my configuration which the README says this plugin supports.

However, the blanklines and space chars that indent-blankline supports appear bright blue when used with this plugin. I noticed that the highlight groups used with indent-blankline don't appear to be in the theme.lua file.

I've added the following locally

IndentBlanklineChar = { fg = util.darken(c.syntax.comment, 0.2) },
IndentBlanklineSpaceChar = { fg = util.darken(c.syntax.comment, 0.2) },
IndentBlanklineSpaceCharBlankline = { fg = util.darken(c.syntax.comment, 0.2) },
IndentBlanklineContextChar = { fg = c.fg },
IndentBlanklineContextStart = { sp = c.fg, underline = true },

This seems to fix the blue lines but I'm not sure if i've missed something else?

Thanks :)

tjamesmac avatar Aug 08 '22 07:08 tjamesmac