projekt0n / github-nvim-theme

GitHub's Neovim themes
MIT License
2.08k stars 105 forks source link

gitsigns.nvim blame line dark, missing color for the GitSignsCurrentLineBlame highlight group #156

Closed rgcv closed 2 years ago

rgcv commented 2 years ago

First off, lovely theme, pretty nice integrations with other plugins too :+1:

I've found that when using gitsigns.nvim's current line blame toggle, the blame line is pitch black or obscured, which makes it hard to read.

20220104T155503+0000

My config for github-nvim-theme is pretty tame.

config = function()
  require('github-theme').setup({
    theme_style = 'dark_default',
    transparent = true
  })
end

It could be that this could go away if a specific color setting for the GitSignsCurrentLineBlame group is added. I've found manually issuing the following command

highlight link GitSignsCurrentLineBlame Comment " or some other group

would make it display more visibly (in this case, by leveraging an already defined highlight group, for example).

Possibly related issue: https://github.com/lewis6991/gitsigns.nvim/issues/255