While searching, if only one pattern matched, this one will be hard to find. That's because IncSearch's bg is same with Normal, Only fg is different.
Here I reverse the color of IncSearch
function! MyHighlights() abort
hi IncSearch ctermfg=0 ctermbg=3 cterm=None
endfunction
augroup MyColors
autocmd!
autocmd ColorScheme * call MyHighlights()
augroup END
colorscheme wal
While searching, if only one pattern matched, this one will be hard to find. That's because
IncSearch's bg is same withNormal, Only fg is different.Here I reverse the color of
IncSearch