voom.cmd (434B)
1 @echo off 2 3 rem TODO Follow the official path preference of airblade/voom 4 rem TODO Remove plugins from pack when change is made in the plugins file 5 set VIM_PLUGIN_PATH=%USERPROFILE%\.local\share\vim\pack\voom\start 6 if NOT EXIST %VIM_PLUGIN_PATH% ( 7 mkdir %VIM_PLUGIN_PATH% 8 ) 9 cd %VIM_PLUGIN_PATH% 10 for /f "tokens=*" %%i in ('type %USERPROFILE%\.local\share\vim\plugins ^| findstr /v "^#"') do ( 11 git clone https://github.com/%%i 12 )