fix for vundle bundle path on windows

Thu, 29 May 2014 23:13:22 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Thu, 29 May 2014 23:13:22 -0400
changeset 11
82a2d994355e
parent 10
e753144057b8
child 12
3e475410324b

fix for vundle bundle path on windows

.vimrc file | annotate | diff | comparison | revisions
--- a/.vimrc
+++ b/.vimrc
@@ -39,11 +39,12 @@ end
 
   if on_windows == 0
     set rtp+=~/.vim/bundle/vundle/
+    call vundle#begin()
   else
     set rtp+=~/vimfiles/bundle/vundle/
+    call vundle#begin('~/vimfiles/bundle')
   endif
 
-  call vundle#rc()
   Plugin 'gmarik/vundle'
 
   Plugin 'altercation/vim-colors-solarized'

mercurial