mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08:00
9 lines
206 B
Bash
9 lines
206 B
Bash
#!/bin/bash
|
|
vimdir=$(pwd)
|
|
pushd $vimdir/my_plugins > /dev/null
|
|
while IFS='' read -r line || [[ -n "$line" ]]; do
|
|
echo "Cloning $line"
|
|
git clone $line
|
|
done < "$vimdir/mypluginList"
|
|
popd > /dev/null
|