diff options
Diffstat (limited to '_config/110-ctrlp.vim')
-rw-r--r-- | _config/110-ctrlp.vim | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/_config/110-ctrlp.vim b/_config/110-ctrlp.vim index c6e53f7..9c3ebc7 100644 --- a/_config/110-ctrlp.vim +++ b/_config/110-ctrlp.vim @@ -1,6 +1,4 @@ -if empty(globpath(&rtp, 'autoload/ctrlp.vim')) - finish -endif +UsePlugin 'ctrlp.vim' let g:ctrlp_custom_ignore = { \ 'dir': '\v[\/]node_modules$', @@ -10,11 +8,3 @@ let g:ctrlp_switch_buffer = 0 " for multi-byte char let g:ctrlp_key_loop = 1 - -if !empty(globpath(&rtp, 'autoload/ctrlp_matchfuzzy.vim')) - let g:ctrlp_match_func = {'match': 'ctrlp_matchfuzzy#matcher'} -endif - -if !empty(globpath(&rtp, 'autoload/memolist.vim')) - nmap <Leader>mf :exe "CtrlP" g:memolist_path<cr><f5> -endif |