Vundle is a short cut for Vimbundle and is a Vim plugin manager.
Setup Vundle:
git clone http://github.com/gmarik/vundle.git ~/.vim/vundle.git
Configure bundles:
Put into your ~/.vimrc:
set rtp+=~/.vim/vundle.git/
call vundle#rc()
" Bundles:
Bundle "L9"
Bundle "FuzzyFinder"
Bundle "rails.vim"
Bundle "ack.vim"
Bundle "git://git.wincent.com/command-t.git"
" ...
" NOTE: if some plugins fail to work, put the config *between* lines:
" filetype off
" "Bundles here
" filetype plugin indent on
Install configured bundles:
Launch vim, run :BundleInstall.
Windows users see Vundle for Windows
Installing requires Git and triggers Git clone for each configured repo to ~/.vim/bundle/.
Vundle allows to:
.vimrcAlso Vundle:
see :h vundle vimdoc for more details.
See gmarik's vimrc for working example.
Thank you!
OSX, Linux and WindowsVundle is a work in progress so any ideas/patches appreciated