vundle/README.md

53 lines
1.5 KiB
Markdown
Raw Normal View History

2010-10-17 19:18:08 -04:00
## About
[Vundle] is a short cut for **V**imb**undle** and is a ~80 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-19 00:15:44 -04:00
mkdir -p ~/.vim/autoload/ && \
2010-10-19 00:47:48 -04:00
curl http://github.com/gmarik/vundle/raw/master/autoload/vundle.vim > ~/.vim/autoload/vundle.vim
2010-10-17 19:18:08 -04:00
## Configuration
Add to your <code>~/.vimrc</code>
2010-10-17 20:46:30 -04:00
call vundle#rc()
" My bundles
2010-10-19 00:29:15 -04:00
" Bundle "<git-repo-uri>"
2010-10-17 20:00:48 -04:00
Bundle "http://github.com/vim-scripts/L9.git"
Bundle "http://github.com/vim-scripts/FuzzyFinder.git"
2010-10-17 21:58:05 -04:00
Bundle "git://git.wincent.com/command-t.git"
2010-10-17 20:00:48 -04:00
Bundle "http://github.com/vim-scripts/rails.vim.git"
Bundle "http://github.com/vim-scripts/ack.vim.git"
2010-10-19 00:26:53 -04:00
" check http://vim-scripts.org for more
2010-10-19 00:15:44 -04:00
BTW [Vim-Scripts.org](http://vim-scripts.org) is a git mirror of all vim scripts. See [gmarik's vimrc](http://github.com/gmarik/vimfiles/blob/6926a7e2ba176a292a8e71b6e4c17f15b8eebe04/vimrc#L134) for working example.
2010-10-19 00:26:53 -04:00
## Installing plugins
2010-10-19 00:15:44 -04:00
Launch <code>vim</code> and run <code>:BundleInstall</code>.
2010-10-17 19:18:08 -04:00
Or from command line:
2010-10-17 19:18:08 -04:00
$ vim -e -c 'BundleInstall' -c 'q'
2010-10-17 20:00:48 -04:00
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
## Inspiration and ideas from
2010-10-17 20:00:48 -04:00
* [pathogen]
* [bundler]
* [Scott Bronson](http://github.com/bronson)
2010-10-17 19:18:08 -04:00
## TODO:
* improve code
2010-10-17 20:18:58 -04:00
* 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