From e5108c1d8a1ef7db18031e36d9b82aaae3349ee6 Mon Sep 17 00:00:00 2001 From: Brett Jones Date: Wed, 9 Apr 2014 11:49:23 -0500 Subject: [PATCH] Use Vundle.vim in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 95c5ec0..0004f96 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ 2. Set up [Vundle]: - `$ git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle` + `$ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim` 3. Configure Plugins: @@ -44,14 +44,14 @@ filetype off " required " set the runtime path to include Vundle and initialize - set rtp+=~/.vim/bundle/vundle/ + set rtp+=~/.vim/bundle/Vundle.vim/ call vundle#rc() " alternatively, pass a path where Vundle should install plugins "let path = '~/some/path/here' "call vundle#rc(path) " let Vundle manage Vundle, required - Plugin 'gmarik/vundle' + Plugin 'gmarik/Vundle.vim' " The following are examples of different formats supported. " Keep Plugin commands between here and filetype plugin indent on.