Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarik committed Oct 19, 2010
1 parent 614685d commit e103c18
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions README.md
Expand Up @@ -2,30 +2,35 @@

** Warning: alpha quality **

[Vundle] is a short cut for [Vim]bundle and is a 67 LOC plugin for managing [Vim] plugins.
[Vundle] is a short cut for [V](#)imb[undle](#) and is a 67 LOC plugin for managing [Vim] plugins.


## Installation

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

## Configuration

Append those lines to your .vimrc

source ~/.vim/plugin/vundle.vim
Append those lines to your <code>~/.vim/bundlerc</code>

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"

BundleRequire
EOF

Add to your <code>.vimrc</code>

call vundle#rc()

BTW using [Vim-Scripts.org](http://vim-scripts.org) we have access to all vim plugins.

## Installing bundled plugins
## Installing plugins

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

Expand Down

0 comments on commit e103c18

Please sign in to comment.