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:
parent
f5f86468e6
commit
7ec5988b51
1 changed files with 1 additions and 1 deletions
2
install
2
install
|
@ -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*"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue