dylanaraps / wal.vim

🎨 A vim colorscheme for use with wal
MIT License
220 stars 41 forks source link

Suggest reverse color of IncSearch #28

Open tkkcc opened 4 years ago

tkkcc commented 4 years ago

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
mohad12211 commented 2 years ago

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