vundle/README.md

41 lines
1.0 KiB
Markdown
Raw Normal View History

2010-10-17 19:18:08 -04:00
** Warning: alpha quality **
## About
2010-10-17 20:00:48 -04:00
Vundle is a short cut for [Vim](http://vim.org) Bundle and is a 67 LOC plugin for managing vim plugins.
2010-10-17 19:18:08 -04:00
## Installation
2010-10-17 20:00:48 -04:00
curl http://github.com/gmarik/vundle/raw/master/plugin/vundle.vim > ~/.vim/plugin/vundle.vim
2010-10-17 19:18:08 -04:00
## Configuration
Append those lines to your .vimrc
2010-10-17 20:00:48 -04:00
Bundle "http://github.com/vim-scripts/L9.git"
Bundle "http://github.com/vim-scripts/FuzzyFinder.git"
Bundle "http://git.wincent.com/command-t.git"
Bundle "http://github.com/vim-scripts/rails.vim.git"
Bundle "http://github.com/vim-scripts/ack.vim.git"
2010-10-17 19:18:08 -04:00
BundleRequire
2010-10-17 20:00:48 -04:00
Using [Vim-Scripts.org](http://vim-scripts.org) mirror we can have access to all vim plugins
2010-10-17 19:18:08 -04:00
## Installing plugins
2010-10-17 20:00:48 -04:00
vim -e -c 'BundleInstall' -c 'q'
triggers Git clone for each configured repo to <code>~/.vim/bundle/</code>
## Thanks
* [Pathogen](http://github.com/tpope/pathogen/)
* [Bundler](http://github.com/wycats/bundler/)
2010-10-17 19:18:08 -04:00
## TODO:
2010-10-17 20:00:48 -04:00
* improve code (as this is my first [Vim](http://vim.org) plugin)
2010-10-17 19:18:08 -04:00
* support non Git resources aswell