aboutsummaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-04-19 05:30:51 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-04-19 05:30:51 +0200
commit54fa1d21fc0e8a1b5b2b1492f98ff23c5bf03cbe (patch)
treea5623244893242ed78798a47fd145b9d7be54e4c /vim
parent792b0135bea96af7d7a78c83ff4e59d732a662b4 (diff)
downloaddotfiles-54fa1d21fc0e8a1b5b2b1492f98ff23c5bf03cbe.tar.xz
vim: Add CtrlP
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index d814121..b6a22ab 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -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