updated vim docs
This commit is contained in:
parent
a88b46aa67
commit
a93f9e33db
@ -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`: >
|
||||
|
||||
Sample `.vimrc`: >
|
||||
|
||||
set nocompatible " be iMproved
|
||||
filetype off " required!
|
||||
|
||||
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"
|
||||
" 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'
|
||||
" ...
|
||||
|
||||
" NOTE: if some plug-ins fail to work, put the config *between* lines:
|
||||
" filetype off
|
||||
" "Bundles here
|
||||
" filetype plugin indent on
|
||||
filetype plugin indent on " required!
|
||||
|
||||
3) Install configured bundles:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user