vundle安装

vundle安装
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

打开vim,执行如下命令:
:BundleInstall
:BundleSearch
:BundleClean

.vimrc

"  For vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
"  vim - scripts repos
Bundle 
' bash-support.vim '
Bundle 
' perl-support.vim '
filetype plugin indent on

" let g:winManagerWindowLayout =  " FileExplorer "  
let g:winManagerWindowLayout = 
" FileExplorer | TagList "
map <c-w><c-f> :FirstExplorerWindow<cr>
map <c-w><c-b> :BottomExplorerWindow<cr>
map <c-w><c-t> : WMToggle<cr>
let g:persistentBehaviour=0
let g:winManagerWidth=30
nmap <silent><F8> :WMToggle<cr>

你可能感兴趣的:(vundle安装)