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:
Brad Dielman 2019-03-20 15:37:08 -04:00 committed by Derek Sifford
parent f46e029b4a
commit d8d75f8a12

View file

@ -31,5 +31,11 @@ if exists('g:ale_enabled')
hi! link ALEInfoSign DraculaCyan hi! link ALEInfoSign DraculaCyan
endif 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: " vim: fdm=marker ts=2 sts=2 sw=2: