Plugins - Added CtrlP
This commit is contained in:
parent
eaab5add81
commit
725add3819
3 changed files with 6 additions and 1 deletions
6
plugins/ctrlp.vim.cfg.vim
Normal file
6
plugins/ctrlp.vim.cfg.vim
Normal file
|
@ -0,0 +1,6 @@
|
|||
let g:ctrlp_working_path_mode = '' " Disable CtrlP-controlled chdir
|
||||
let g:ctrlp_map = '' " Disable default mapping
|
||||
|
||||
nnoremap <Leader>pp :CtrlPBuffer<CR>
|
||||
nnoremap <Leader>po :CtrlPMRUFiles<CR>
|
||||
nnoremap <Leader>pi :CtrlP<CR>
|
6
plugins/ctrlp.vim.load.vim
Normal file
6
plugins/ctrlp.vim.load.vim
Normal file
|
@ -0,0 +1,6 @@
|
|||
call dein#add('ctrlpvim/ctrlp.vim', #{
|
||||
\ lazy: 1,
|
||||
\ on_map: #{
|
||||
\ n: [ '<Leader>pi' , '<Leader>po', '<Leader>pp' ]
|
||||
\ }
|
||||
\ })
|
Loading…
Add table
Add a link
Reference in a new issue