vim-colors-github icon indicating copy to clipboard operation
vim-colors-github copied to clipboard

force override any defaults

Open gko opened this issue 6 years ago • 5 comments

First of all thank you for the theme. ❤️

I noticed that some colors are not applied when you use hi link(the defaults are forced): image

So I replaced all hi link with hi! link to force the usage of linked rules: image

gko avatar May 22 '19 22:05 gko

That’s what hi clear does, isn’t it? Not sure what went wrong for you.

cormacrelf avatar May 24 '19 13:05 cormacrelf

@cormacrelf yes it should. But I have a problem with «SignColumn». It seems to not be affected by hi clear. It works however if I add another hi clear SignColumn. Weird.

gko avatar May 25 '19 12:05 gko

@gko It should... and it does. Can you reproduce with every other vim setting at its default?

cormacrelf avatar May 25 '19 13:05 cormacrelf

Yes I can: NVIM v0.3.4 Os: MacOS 10.14.5 Terminal: Both MacOs terminal and iTerm

~/.config/nvim/init.vim:

set number
set signcolumn=yes
color github

The only file in ~/.config/nvim/ folder: colors/github.vim

Result: image

gko avatar May 25 '19 14:05 gko

vim 8.1.1150

~/.vimrc:

syntax on
set t_Co=256
set number
set signcolumn=yes
color github

Result: image

gko avatar May 25 '19 14:05 gko