|
|
|
@ -20,6 +20,12 @@ |
|
|
|
set nocompatible " be iMproved |
|
|
|
filetype off " required! |
|
|
|
|
|
|
|
if !isdirectory(expand("~/.vim/bundle/vundle")) |
|
|
|
!mkdir -p ~/.vim/bundle |
|
|
|
!git clone git://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
|
|
|
let s:bootstrap=1 |
|
|
|
endif |
|
|
|
|
|
|
|
set rtp+=~/.vim/bundle/vundle/ |
|
|
|
call vundle#rc() |
|
|
|
|
|
|
|
@ -41,6 +47,11 @@ |
|
|
|
Bundle 'git://git.wincent.com/command-t.git' |
|
|
|
" ... |
|
|
|
|
|
|
|
if exists("s:bootstrap") && s:bootstrap |
|
|
|
unlet s:bootstrap |
|
|
|
BundleInstall |
|
|
|
endif |
|
|
|
|
|
|
|
filetype plugin indent on " required! |
|
|
|
" |
|
|
|
" Brief help |
|
|
|
|