vim之vundle

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle,下载到本地

 

gvim ~/.vimrc

 1 set nocompatible               " be iMproved
 2 filetype off                   " required!
 3 
 4 set rtp+=~/.vim/bundle/vundle/
 5 call vundle#rc()
 6 
 7 Bundle 'gmarik/vundle'
 8 
 9 Bundle 'a.vim'
10 Bundle 'molokai'
11 Bundle 'The-NERD-tree'
12 Bundle 'minibufexpl.vim'
13 Bundle 'Lokaltog/vim-powerline'
14 Bundle 'Tagbar'
15 Bundle 'AutoComplPop'
16 Bundle 'Auto-Pairs'
17 Bundle 'ctrlp.vim'
18 
19 "这个需要7.4
20 "Bundle 'Valloric/YouCompleteMe'
21 
22 filetype plugin indent on     " required!
23 
24 "自定义的配置文件路径
25 set runtimepath+=~/vimConfig

执行BundleInstall即可

posted @ 2013-12-23 21:16  自由出土文物  阅读(322)  评论(0编辑  收藏  举报