updated vim docs

This commit is contained in:
gmarik 2011-04-24 22:31:51 -05:00
parent a88b46aa67
commit a93f9e33db

View File

@ -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`: >
set rtp+=~/.vim/vundle.git/ Sample `.vimrc`: >
call vundle#rc()
" Bundles: set nocompatible " be iMproved
Bundle "L9" filetype off " required!
Bundle "FuzzyFinder"
Bundle "rails.vim"
Bundle "ack.vim"
Bundle "git://git.wincent.com/command-t.git"
" ...
" NOTE: if some plug-ins fail to work, put the config *between* lines: set rtp+=~/.vim/vundle.git/
" filetype off call vundle#rc()
" "Bundles here
" filetype plugin indent on " My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" vim-scripts repos
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: