vim - How to customize solarize for gvim? -


i have solarized installed , looking great. 1 thing want differently want cursorline increases contrast, instead of decreasing it. seems should able put...

hi cursorline guibg=#000000 

... in .vimrc, , indeed, if enter command, works expected. putting in file has no effect. i've tried both before , after "colorscheme solarized."

the :hi command must issued after last colorscheme command executed during startup. since plugins shouldn't this, it's in ~/.vimrc. closely; it's unnecessary overhead configure multiple colorschemes; last 1 wins, anyway.

if switch colorschemes dynamically, you'd need hook via

autocmd colorscheme * hi cursorline guibg=#000000 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -