projekt0n / github-nvim-theme

GitHub's Neovim themes
MIT License
2.07k stars 106 forks source link

Indent-blankline.nvim supported? #201

Closed tjamesmac closed 1 year ago

tjamesmac commented 2 years ago

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 :)

luisdavim commented 1 year ago

@tjamesmac would you consider opening a PR for this?

TisnKu commented 1 year ago

Hey @luisdavim , I opened a PR according to @tjamesmac 's suggestion. Could you take a look? Thanks.