From d8d75f8a12f6a6135c0069d37c4eb0fc35a1e360 Mon Sep 17 00:00:00 2001 From: Brad Dielman Date: Wed, 20 Mar 2019 15:37:08 -0400 Subject: [PATCH] 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. --- after/plugin/dracula.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/after/plugin/dracula.vim b/after/plugin/dracula.vim index 7e92c46..60d818c 100644 --- a/after/plugin/dracula.vim +++ b/after/plugin/dracula.vim @@ -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: