Update scripts

This commit is contained in:
Rob Watson 2021-04-02 06:07:11 +02:00
parent 9823c61df9
commit ccf833474e
2 changed files with 10 additions and 3 deletions

View File

@ -12,6 +12,8 @@ pacman -S --needed base-devel \
exa \
fzf \
tmux \
ripgrep \
bat \
ttf-ubuntu-font-family # Ubuntu Mono font for Alacritty
# https://rustup.rs/

View File

@ -4,7 +4,7 @@
set -e
# Special case for fzf.vim plugin file:
# Note: not currently updated automatically
# Note: not currently updated automatically by `updatevimplugins`
url="https://raw.githubusercontent.com/junegunn/fzf/master/plugin/fzf.vim"
echo "Fetching $url..."
mkdir -p $HOME/.vim/plugin
@ -18,6 +18,11 @@ mkdir -p $pluginhome
cd $pluginhome
grep packadd! $HOME/.vimrc | grep -oP 'https.*$' | while read -r url ; do
echo "Cloning $url.."
git clone --quiet --depth=1 "$url"
dirname=$(basename $url .git)
if [ -d "$dirname" ]; then
echo "Exists: $dirname"
else
echo "Cloning $url.."
git clone --quiet --depth=1 "$url"
fi
done