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