You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
gmarik 1aa577a8ef Documentation 15 years ago
autoload Separate config is a luxory 15 years ago
README.md Documentation 15 years ago
vundle_test.sh Documentation 15 years ago

README.md

About

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

Installation

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

Configuration

Add to your ~/.vimrc

call vundle#rc()
" My bundles
" Bundle "<git-repo-uri>"
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

BTW Vim-Scripts.org is a git mirror of all vim scripts. See gmarik's vimrc for working example.

Installing plugins

Launch vim and run :BundleInstall.

Or from command line:

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

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

Inspiration and ideas from

TODO:

  • improve code
  • support non Git resources aswell