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

Changing hi VertSplit guibg=anycolor

Open redeemefy opened this issue 8 years ago • 1 comments

I don't know why.... if I write this line of code after

if has('gui_running')
set background=dark
    colorscheme solarized
else
    colorscheme zenburn
endif

hi VertSplit guibg=blue

the code doesn't work. However, if I run the same line of code in the as a temporary command does work. Why is this happening?

redeemefy avatar Dec 28 '16 01:12 redeemefy

I reached this comment by googling the same problem, and now I solved it, so thought it might help you to know:

This probably doesn't have any effect since you're probably initializing some plugin or a setting that is overriding this. Try adding hi VertSplit guibg=blue as the last line in your vim settings file. That worked for me.

gillyb avatar Mar 14 '18 13:03 gillyb