Browse Source

Merge 2bcea61f48 into c6f7607e85

pull/144/merge
GitHub Merge Button 14 years ago
parent
commit
c4487c4b58
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      README.md

+ 11
- 0
README.md View File

@ -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


Loading…
Cancel
Save