metalelf0 / jellybeans-nvim

A port of jellybeans colorscheme for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong gitsigns colors

onsails opened this issue · comments

I am using gitsigns-nvim to mark lines as added, deleted or changes.
With jellybeans-nvim signs are always gray:

image
Here 187 line is added, 192 and below are changed.

That's how it looks like in one-nvim:

image

Besides gitsigns, notice how visually "slim" signcolumn is (actually it's just the right color for non-changed lines). There are no this wide gray bars.

fixed for myself by redefining some highlights:

  hi DiffAdd guibg=#333333 guifg=#d2ebbe ctermbg=none
  hi DiffChange guibg=#333333 guifg=#dad085 ctermbg=none
  hi DiffDelete guibg=#333333 guifg=#f0a0c0 ctermbg=none