Use cURL instead of wget

Ran into an issue on a fresh Arch install where wget was not available. Seems
cURL comes pretty standard, so went ahead and switched this to that.

Fixes #22
This commit is contained in:
Josh Sherman 2019-09-29 11:52:07 -05:00
parent f5f86468e6
commit 7ec5988b51
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -86,7 +86,7 @@ for INDEX in ${!VIMPLUGS[*]}; do
$GITCLONE "https://github.com/$VIMPLUG.git" "$HOME/.vim/pack/plugins/start/$PLUGDIR"
done
wget https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim -P "$HOME/.vim/colors/"
curl -o "$HOME/.vim/colors/" https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim
cd "$HOME" || exit
rm -f "${HOME}/.zcompdump*"