目录

下载vundle

vundle 用于管理vim的插件

配置 ~/.vimrc文件

set nocompatible              " be iMproved, required
filetype off                  " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'L9'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}

Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/syntastic'
Bundle 'taglist.vim'
Bundle 'rkulla/pydiction'
call vundle#end()            " required
filetype plugin indent on    " required


set ts=4
set nu
syntax   on = python

安装插件

vim +PluginInstall +qall # 自动安装.vimrc中新添的插件

:h vundle -查看帮助 :BundleList -列举列表(也就是.vimrc)中配置的所有插件:BundleInstall -安装列表中的全部插件:BundleInstall! -更新列表中的全部插件:BundleSearch

  -刷新插件缓存  

:BundleClean -清除列表中没有的插件:BundleClean! -清除列表中没有的插件 </code>