Browse Source

updated vim docs

pull/25/merge
gmarik 15 years ago
parent
commit
a93f9e33db
1 changed files with 24 additions and 17 deletions
  1. +24
    -17
      doc/vundle.txt

+ 24
- 17
doc/vundle.txt 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
2) Configure bundles:
Append to your `~/.vimrc`: >
set rtp+=~/.vim/vundle.git/
call vundle#rc()
" Bundles:
Bundle "L9"
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:
" filetype off
" "Bundles here
" filetype plugin indent on
Sample `.vimrc`: >
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/vundle.git/
call vundle#rc()
" 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:


Loading…
Cancel
Save