Mercurial > dotfiles
diff vim/vimrc @ 424:d8086f81b9c8
Pathogen config files.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 27 Mar 2018 21:34:25 -0700 |
parents | e6b3048980c4 |
children | 67f14a8c2304 |
line wrap: on
line diff
--- a/vim/vimrc Tue Feb 20 22:11:58 2018 -0800 +++ b/vim/vimrc Tue Mar 27 21:34:25 2018 -0700 @@ -43,10 +43,7 @@ " Disable some plugins. let g:pathogen_disabled = get(g:, 'pathogen_disabled', []) -call add(g:pathogen_disabled, 'vimroom') -call add(g:pathogen_disabled, 'minibufexpl') -call add(g:pathogen_disabled, 'ragtag') -call add(g:pathogen_disabled, 'interestingwords') +call ludo#setup_pathogen([s:vim_home.'/bundle', s:vim_home.'/local']) " Load pathogen. runtime bundle/pathogen/autoload/pathogen.vim @@ -703,8 +700,9 @@ " FZF mappings. if s:HasPlugin('fzf') - nnoremap <silent> <C-p> :Files - nnoremap <silent> <C-o> :Buffers + nnoremap <silent> <C-p> :Files<cr> + nnoremap <silent> <C-o> :Buffers<cr> + nnoremap <Tab> :History<cr> endif " }}}