dotfiles/script/installvimplugins

29 lines
858 B
Plaintext
Raw Normal View History

2021-04-03 08:51:47 +00:00
#!/usr/bin/env bash
2021-03-31 10:47:59 +00:00
#
# Install vim plugins to $HOME/.vim/pack/git-plugins/opt
2021-03-31 09:53:33 +00:00
set -e
# Special case for fzf.vim plugin file:
2021-04-02 04:07:11 +00:00
# Note: not currently updated automatically by `updatevimplugins`
2021-03-31 09:53:33 +00:00
url="https://raw.githubusercontent.com/junegunn/fzf/master/plugin/fzf.vim"
echo "Fetching $url..."
mkdir -p $HOME/.vim/plugin
curl -sL -o $HOME/.vim/plugin/fzf.vim https://raw.githubusercontent.com/junegunn/fzf/master/plugin/fzf.vim
# Relies on vimrc containing lines e.g.:
# packadd! rust.vim " https://github.com/rust-lang/rust.vim.git
pluginhome=$HOME/.vim/pack/git-plugins/opt
mkdir -p $pluginhome
cd $pluginhome
grep packadd! $HOME/.vimrc | grep -oP 'https.*$' | while read -r url ; do
2021-04-02 04:07:11 +00:00
dirname=$(basename $url .git)
if [ -d "$dirname" ]; then
echo "Exists: $dirname"
else
echo "Cloning $url.."
git clone --quiet --depth=1 "$url"
fi
2021-03-31 09:53:33 +00:00
done