I'm trying to customize my pop-up completion menu according to this guide:
Vim Wiki: pop-up pop-up menu . " He notes
add to your vimrc if you always want this.
However, with the following options in my .vimrc file
colo desert
filetype plugin on
set ofu=syntaxcomplete#Complete
highlight Pmenu guibg=brown gui=bold
I get the following:

Note: when I manually enter the highlight command manually, it works:

How to make the popup use the color scheme defined in .vimrc without having to enter it manually each time?
source
share