Skip to content

Commit

Permalink
Merge pull request spf13#524 from rekendahl/3.0
Browse files Browse the repository at this point in the history
Added fork files as per other install scripts
  • Loading branch information
spf13 committed Jan 8, 2014
2 parents 78db1cb + 8c0e8e4 commit d09913e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spf13-vim-windows-xp-install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit d09913e

Please sign in to comment.