Browse Source

Merge 8e4c4105e1 into 3dcb0c3299

pull/266/merge
Breno Martinusso 13 years ago
parent
commit
50aacca1c9
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      README.md

+ 8
- 2
README.md View File

@ -20,8 +20,14 @@
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
if has('win32') || has('win64')
set rtp+=~/vimfiles/bundle/vundle/
call vundle#rc('$HOME/vimfiles/bundle/')
else
" Usual quickstart instructions
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
endif
" let Vundle manage Vundle
" required!


Loading…
Cancel
Save