Go to file
2010-10-18 23:26:53 -05:00
autoload Autoload 2010-10-18 23:09:25 -05:00
README.md Documentation 2010-10-18 23:26:53 -05:00

About

** Warning: alpha quality **

Vundle is a short cut for Vimbundle and is a 67 LOC plugin for managing Vim plugins.

Installation

mkdir -p ~/.vim/autoload/ && \
curl http://github.com/gmarik/vundle/raw/bundlerc/autoload/vundle.vim > ~/.vim/autoload/vundle.vim

Configuration

Append those lines to your ~/.vim/bundlerc

cat > ~/.vim/bundlerc <<EOF 
Bundle "http://github.com/vim-scripts/L9.git"
Bundle "http://github.com/vim-scripts/FuzzyFinder.git"
Bundle "git://git.wincent.com/command-t.git"
Bundle "http://github.com/vim-scripts/rails.vim.git"
Bundle "http://github.com/vim-scripts/ack.vim.git"
" check http://vim-scripts.org for more
EOF

BTW Vim-Scripts.org is a git mirror of all vim scripts.

Add to your .vimrc

call vundle#rc()

Installing plugins

vim  -e -c 'BundleInstall' -c 'q'

triggers Git clone for each configured repo to ~/.vim/bundle/.

Thanks

TODO:

  • improve code (as this is my first Vim plugin
  • support non Git resources aswell