2020-07-20 13:27:23 +00:00
|
|
|
@echo off
|
2020-10-20 23:29:27 +00:00
|
|
|
setlocal
|
|
|
|
|
2020-07-20 13:27:23 +00:00
|
|
|
REM
|
|
|
|
REM Cmder
|
|
|
|
REM
|
|
|
|
set cmder_version=v1.3.15
|
|
|
|
set cmder_url=https://github.com/cmderdev/cmder/releases/download/%cmder_version%/cmder.7z
|
|
|
|
set cmder_zip=Installer\win32_cmder_%cmder_version%.7z
|
|
|
|
set cmder_install_path=Cmder
|
|
|
|
|
|
|
|
echo - Downloading from %cmder_url% to %cmder_zip%
|
|
|
|
if not exist "%cmder_zip%" powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest %cmder_url% -OutFile %cmder_zip%"
|
|
|
|
if not exist "%cmder_zip%" echo Failed to download cmder, exiting.
|
|
|
|
if not exist "%cmder_zip%" goto :eof
|
|
|
|
|
|
|
|
echo - Extracting %cmder_zip% to %cmder_install_path%
|
|
|
|
if not exist "%cmder_install_path%" Installer\win32_7za.exe x -y -o%cmder_install_path% %cmder_zip% > NUL
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM Cmder User Profile
|
|
|
|
REM
|
|
|
|
set cmder_user_profile=Installer\win32_cmder_user_profile.cmd
|
2020-10-20 23:29:27 +00:00
|
|
|
set cmder_user_profile_install_path=%cmder_root%\config
|
|
|
|
set cmder_user_profile_install_dest=%cmder_user_profile_install_path%\user_profile.cmd
|
|
|
|
|
2020-07-20 13:27:23 +00:00
|
|
|
echo - Copy %cmder_user_profile% to %cmder_user_profile_install_path%
|
2020-10-20 23:29:27 +00:00
|
|
|
if not exist "%cmder_user_profile_install_path%" mkdir "%cmder_user_profile_install_path%"
|
|
|
|
copy /Y %cmder_user_profile% %cmder_user_profile_install_dest% > NUL
|
2020-07-20 13:27:23 +00:00
|
|
|
|
|
|
|
REM
|
|
|
|
REM GVim
|
|
|
|
REM
|
|
|
|
set vim_install_path=GVim
|
|
|
|
set vim_zip=Installer\win32_GVim_v8.2.paf.7z
|
|
|
|
|
|
|
|
echo - Extracting %vim_zip% to %vim_install_path%
|
|
|
|
if not exist "%vim_install_path%" Installer\win32_7za.exe x -y -o%vim_install_path% %vim_zip% > NUL
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM Vim Plug
|
|
|
|
REM
|
|
|
|
set vim_root=GVim\Data\settings
|
|
|
|
set vim_plug_url=https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
set vim_plug_install_path=%vim_root%\vimfiles\autoload
|
|
|
|
set vim_plug_file=%vim_plug_install_path%\plug.vim
|
|
|
|
|
|
|
|
echo - Downloading from %vim_plug_url% to %vim_plug_install_path%
|
|
|
|
if not exist "%vim_plug_install_path%" mkdir "%vim_plug_install_path%"
|
|
|
|
if not exist "%vim_plug_file%" powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest %vim_plug_url% -OutFile %vim_plug_file%"
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM GVim Fullscreen DLL
|
|
|
|
REM
|
|
|
|
set gvim_fullscreen_dll=Installer\win32_gvim_fullscreen.dll
|
2020-10-18 23:32:36 +00:00
|
|
|
set gvim_fullscreen_dll_install_path=GVim\App\vim\vim80\gvim_fullscreen.dll
|
2020-07-20 13:27:23 +00:00
|
|
|
echo - Copy %gvim_fullscreen_dll% to %gvim_fullscreen_dll_install_path%
|
|
|
|
copy /Y %gvim_fullscreen_dll% %gvim_fullscreen_dll_install_path%
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM vimrc
|
|
|
|
REM
|
|
|
|
echo - Copy Installer\_vimrc to %vim_root%
|
|
|
|
copy /Y Installer\_vimrc %vim_root% > NUL
|
|
|
|
|
|
|
|
REM
|
|
|
|
REM Clang Format
|
|
|
|
REM
|
|
|
|
set clang_format_url=https://raw.githubusercontent.com/llvm-mirror/clang/master/tools/clang-format/clang-format.py
|
2020-07-22 12:36:48 +00:00
|
|
|
set clang_format_path=%vim_root%\.vim
|
2020-07-20 13:27:23 +00:00
|
|
|
set clang_format_file=%clang_format_path%\clang-format.py
|
|
|
|
echo - Downloading from %clang_format_url% to %clang_format_path%
|
|
|
|
if not exist "%clang_format_path%" mkdir "%clang_format_path%"
|
|
|
|
if not exist "%clang_format_file%" powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest %clang_format_url% -OutFile %clang_format_file%"
|
2020-07-22 12:36:48 +00:00
|
|
|
|
2020-07-23 22:32:41 +00:00
|
|
|
echo - Copy Installer\win32_clang_format.exe to %cmder_install_path%\bin\clang-format.exe
|
|
|
|
copy /Y Installer\win32_clang_format.exe %cmder_install_path%\bin\clang-format.exe
|
|
|
|
|
2020-10-20 23:29:27 +00:00
|
|
|
REM
|
|
|
|
REM Python
|
|
|
|
REM
|
|
|
|
set python_version=3.6.5
|
|
|
|
set python_url=https://www.python.org/ftp/python/%python_version%/python-%python_version%-embed-amd64.zip
|
|
|
|
set python_zip=python-%python_version%-embed-amd64.zip
|
|
|
|
set python_zip_dest=Installer\%python_zip%
|
|
|
|
set python_dest=%cmder_root%\bin\python
|
|
|
|
echo - Downloading from %python_url% to %python_zip_dest%
|
|
|
|
if not exist "%python_zip_dest%" powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest %python_url% -OutFile %python_zip_dest%"
|
|
|
|
|
|
|
|
echo - Unzip %python_zip_dest% to %python_dest%
|
|
|
|
if not exist "%python_dest%" Installer\win32_7za.exe x -y -o%python_dest% %python_zip_dest% > NUL
|
|
|
|
|
2020-09-19 02:40:20 +00:00
|
|
|
REM
|
2020-10-19 22:16:04 +00:00
|
|
|
REM ctags, scanmapset (bind capslock to escape via registry), uncap (bind capslock to escape whilst program running shim)
|
2020-09-19 02:40:20 +00:00
|
|
|
REM
|
|
|
|
set ctags_path=%cmder_install_path%\bin\ctags.exe
|
2020-10-19 22:16:04 +00:00
|
|
|
set scanmapset_path=%cmder_install_path%\bin\scanmapset.exe
|
|
|
|
set uncap_path=%cmder_install_path%\bin\uncap.exe
|
|
|
|
|
2020-09-19 02:40:20 +00:00
|
|
|
set ctags_file=Installer\win32_ctags.exe
|
2020-10-19 22:16:04 +00:00
|
|
|
set scanmapset_file=Installer\win32_scanmapset.exe
|
|
|
|
set uncap_file=Installer\win32_uncap.exe
|
|
|
|
|
2020-09-19 02:40:20 +00:00
|
|
|
echo - Copy %ctags_file% to %ctags_path%
|
2020-10-19 22:16:04 +00:00
|
|
|
echo - Copy %scanmapset_file% to %scanmapset_path%
|
|
|
|
echo - Copy %uncap_file% to %uncap_path%
|
|
|
|
|
2020-09-19 02:40:20 +00:00
|
|
|
copy /Y %ctags_file% %ctags_path%
|
2020-10-19 22:16:04 +00:00
|
|
|
copy /Y %scanmapset_file% %scanmapset_path%
|
|
|
|
copy /Y %uncap_file% %uncap_path%
|
2020-09-19 02:40:20 +00:00
|
|
|
|
2020-07-22 12:36:48 +00:00
|
|
|
REM
|
2020-10-20 12:57:45 +00:00
|
|
|
REM ripgrep
|
2020-07-22 12:36:48 +00:00
|
|
|
REM
|
2020-10-20 12:57:45 +00:00
|
|
|
set rg_path=%cmder_install_path%\bin
|
|
|
|
set rg_zip=Installer\win32_rg_v12.1.1.7z
|
|
|
|
echo - Extracting %rg_zip% to %rg_path%
|
|
|
|
if not exist "%rg_path%\rg.exe" Installer\win32_7za.exe x -y -o%rg_path% %rg_zip% > NUL
|