Add basic support for CtrlP (#131)
* Add basic support for CtrlP I figure this would be a nice addition. It will highlight the matched words when typing a search using CtrlP. * Requested changes Add conditional around CtrlP changes, change highlight color for match.
This commit is contained in:
parent
f46e029b4a
commit
d8d75f8a12
1 changed files with 6 additions and 0 deletions
|
@ -31,5 +31,11 @@ if exists('g:ale_enabled')
|
|||
hi! link ALEInfoSign DraculaCyan
|
||||
endif
|
||||
" }}}
|
||||
" CtrlP: {{{
|
||||
if exists('g:loaded_ctrlp')
|
||||
hi! link CtrlPMatch IncSearch
|
||||
hi! link CtrlPBufferHid Normal
|
||||
endif
|
||||
" }}}
|
||||
|
||||
" vim: fdm=marker ts=2 sts=2 sw=2:
|
||||
|
|
Loading…
Reference in a new issue