2010-10-17 19:18:08 -04:00
|
|
|
## About
|
|
|
|
|
2010-10-17 20:06:08 -04:00
|
|
|
** Warning: alpha quality **
|
|
|
|
|
2010-10-17 20:18:58 -04:00
|
|
|
[Vundle] is a short cut for [Vim]bundle and is a 67 LOC plugin for managing [Vim] plugins.
|
2010-10-17 20:00:48 -04:00
|
|
|
|
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:46:30 -04:00
|
|
|
source '~/.vim/plugin/vundle.vim'
|
|
|
|
|
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 20:46:30 -04:00
|
|
|
|
2010-10-17 19:18:08 -04:00
|
|
|
BundleRequire
|
|
|
|
|
2010-10-17 20:09:43 -04:00
|
|
|
BTW using [Vim-Scripts.org](http://vim-scripts.org) we have access to all vim plugins.
|
2010-10-17 20:00:48 -04:00
|
|
|
|
2010-10-17 20:06:08 -04:00
|
|
|
## Installing bundled plugins
|
2010-10-17 19:18:08 -04:00
|
|
|
|
2010-10-17 20:00:48 -04:00
|
|
|
vim -e -c 'BundleInstall' -c 'q'
|
|
|
|
|
2010-10-17 20:09:43 -04:00
|
|
|
triggers [Git clone](http://gitref.org/creating/#clone) for each configured repo to <code>~/.vim/bundle/</code>.
|
2010-10-17 20:00:48 -04:00
|
|
|
|
|
|
|
## Thanks
|
|
|
|
|
2010-10-17 20:18:58 -04:00
|
|
|
* [Pathogen]
|
|
|
|
* [Bundler]
|
2010-10-17 19:18:08 -04:00
|
|
|
|
|
|
|
## TODO:
|
|
|
|
|
2010-10-17 20:18:58 -04:00
|
|
|
* improve code (as this is my first [Vim] plugin
|
|
|
|
* support non [Git] resources aswell
|
|
|
|
|
|
|
|
[Vundle]:http://github.com/gmarik/vundle
|
|
|
|
[Pathogen]:http://github.com/tpope/vim-pathogen/
|
|
|
|
[Bundler]:http://github.com/wycats/bundler/
|
|
|
|
[Vim]:http://vim.org
|
|
|
|
[Git]:http://git-scm.com
|