dylanaraps / wal.vim

🎨 A vim colorscheme for use with wal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Suggest reverse color of IncSearch

tkkcc opened this issue · comments

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

@tkkcc Thank you!, I found ctermbg=7 to be more clear. Thank you again!