add batch files for Windows

This commit is contained in:
Alex Yatskov 2019-03-29 10:27:38 -07:00
parent e1c7fc27c2
commit 2092cec37e
3 changed files with 11 additions and 0 deletions

3
install.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
git submodule update --init --recursive

4
link.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
mklink "%USERPROFILE%\_vimrc" "%CD%\.vimrc"
mklink /J "%USERPROFILE%\.vim" "%CD%\.vim"

4
update.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
git submodule foreach git pull origin master
git submodule foreach --recursive git submodule update