Skip to content

Commit

Permalink
updated vim docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarik committed Apr 25, 2011
1 parent a88b46a commit a93f9e3
Showing 1 changed file with 24 additions and 17 deletions.
41 changes: 24 additions & 17 deletions doc/vundle.txt
Expand Up @@ -46,23 +46,30 @@ in order to install/search [all available vim scripts]
git clone http://github.com/gmarik/vundle.git ~/.vim/vundle.git git clone http://github.com/gmarik/vundle.git ~/.vim/vundle.git
2) Configure bundles: 2) Configure bundles:
Append to your `~/.vimrc`: >
Sample `.vimrc`: >
set rtp+=~/.vim/vundle.git/
call vundle#rc() set nocompatible " be iMproved
filetype off " required!
" Bundles:
Bundle "L9" set rtp+=~/.vim/vundle.git/
Bundle "FuzzyFinder" call vundle#rc()
Bundle "rails.vim"
Bundle "ack.vim" " My Bundles here:
Bundle "git://git.wincent.com/command-t.git" "
" ... " original repos on github
Bundle 'tpope/vim-fugitive'
" NOTE: if some plug-ins fail to work, put the config *between* lines: Bundle 'lokaltog/vim-easymotion'
" filetype off Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" "Bundles here " vim-scripts repos
" filetype plugin indent on Bundle 'L9'
Bundle 'FuzzyFinder'
Bundle 'rails.vim'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" ...
filetype plugin indent on " required!
3) Install configured bundles: 3) Install configured bundles:


Expand Down

0 comments on commit a93f9e3

Please sign in to comment.