From a93f9e33db7e5545679d20a1e3e520ef7b9e2597 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 24 Apr 2011 22:31:51 -0500 Subject: [PATCH] updated vim docs --- doc/vundle.txt | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/doc/vundle.txt b/doc/vundle.txt index a67563e..4aa9c6e 100644 --- a/doc/vundle.txt +++ b/doc/vundle.txt @@ -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() + Sample `.vimrc`: > - " Bundles: - Bundle "L9" - Bundle "FuzzyFinder" - Bundle "rails.vim" - Bundle "ack.vim" - Bundle "git://git.wincent.com/command-t.git" - " ... + set nocompatible " be iMproved + filetype off " required! - " NOTE: if some plug-ins fail to work, put the config *between* lines: - " filetype off - " "Bundles here - " filetype plugin indent on + 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: