diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 05:30:51 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 05:30:51 +0200 |
commit | 54fa1d21fc0e8a1b5b2b1492f98ff23c5bf03cbe (patch) | |
tree | a5623244893242ed78798a47fd145b9d7be54e4c | |
parent | 792b0135bea96af7d7a78c83ff4e59d732a662b4 (diff) | |
download | dotfiles-54fa1d21fc0e8a1b5b2b1492f98ff23c5bf03cbe.tar.xz |
vim: Add CtrlP
-rw-r--r-- | vim/vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,7 @@ NeoBundle 'mattn/emmet-vim' NeoBundle 'miekg/rfc' NeoBundle 'tommcdo/vim-exchange' NeoBundle 'scrooloose/syntastic' +NeoBundle 'kien/ctrlp.vim' call neobundle#end() @@ -108,6 +109,10 @@ let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 +let g:ctrlp_extensions = ['tag', 'buffertag', 'dir', 'undo', 'line', + \ 'changes', 'mixed', 'bookmarkdir'] + +nmap <silent> <Leader>p :CtrlPMixed<CR> " Installation check. NeoBundleCheck |