From 80db74f5f472e0878340207086958ecfdd311f42 Mon Sep 17 00:00:00 2001 From: Jacob Zimmerman Date: Wed, 25 Feb 2015 03:50:10 -0500 Subject: [PATCH] Plugin ctrlp ctrlp is a magical Vim plugin for finding files quickly. It lets you "fuzzy find" files, which you'll be familiar with if you use Sublime a lot. Basically, you can type a subset of the letters in a file's name, and the plugin will be smart enough to figure it out. --- vimrc.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/vimrc.vim b/vimrc.vim index 4aacb38..b5782ea 100644 --- a/vimrc.vim +++ b/vimrc.vim @@ -20,6 +20,7 @@ Plugin 'scrooloose/syntastic' Plugin 'xolox/vim-misc' Plugin 'xolox/vim-easytags' Plugin 'majutsushi/tagbar' +Plugin 'kien/ctrlp.vim' call vundle#end()