Snippet backgroud color neovim/vim

Viewed 24

Does anybody know how can I change this background? The dark blue color in neovim.

enter image description here

1 Answers

Neovim autocompletion uses hightlight for colors of autocomplete menu with highlight groups Pmenu, PmenuSbar and PmenuSel.

To change selection color, set Pmenu highlight group with your colors :

hi PmenuSel ctermbg=251 ctermfg=237 guibg=#cad0de guifg=#33374c
Related