Se você não quiser desabilitar permanentemente, pode vincular uma chave para alternar o realce, conforme sugerido em esta resposta para uma pergunta semelhante em stackoverflow.
map <F12> :set hls!<CR>
imap <F12> <ESC>:set hls!<CR>a
vmap <F12> <ESC>:set hls!<CR>gv
Se você quiser desativar permanentemente o destaque:
11.1. After I searched for a text with a pattern, all the matched text
stays highlighted. How do I turn off the highlighting
temporarily/permanently?
The 'hlsearch' option controls whether all the matches for the last
searched pattern are highlighted or not. By default, this option is not
enabled. If this option is set in a system-wide vimrc file, then you can
turn off the search highlighting by using the following command:
:set nohlsearch
(da FAQ do VIM )