Added fork files as per other install scripts

This commit is contained in:
Robert Ekendahl 2014-01-08 09:40:06 -05:00
parent 78db1cb57a
commit 8c0e8e4929

View File

@ -15,7 +15,7 @@
@if exist "%BASE_DIR%" (
@set ORIGINAL_DIR=%CD%
echo updating spf13-vim
chdir /d "%BASE_DIR%" && git pull
chdir /d "%BASE_DIR%" && git pull
chdir /d "%ORIGINAL_DIR%"
) else (
echo cloning spf13-vim
@ -26,8 +26,11 @@
call xcopy /s/e/h/y/r/q/i "%BASE_DIR%\.vim" "%HOME%\.vim"
call copy "%BASE_DIR%\.vimrc" "%HOME%\.vimrc"
call copy "%BASE_DIR%\.vimrc" "%HOME%\_vimrc"
call copy "%BASE_DIR%\.vimrc.fork" "%HOME%\.vimrc.fork"
call copy "%BASE_DIR%\.vimrc.bundles" "%HOME%\.vimrc.bundles"
call copy "%BASE_DIR%\.vimrc.bundles.fork" "%HOME%\.vimrc.bundles.fork"
call copy "%BASE_DIR%\.vimrc.before" "%HOME%\.vimrc.before"
call copy "%BASE_DIR%\.vimrc.before.fork" "%HOME%\.vimrc.before.fork"
@if not exist "%HOME%/.vim/bundle/vundle" call git clone https://github.com/gmarik/vundle.git "%HOME%/.vim/bundle/vundle"
call vim -u "%BASE_DIR%/.vimrc.bundles" - +BundleInstall! +BundleClean +qall