feat(install): skip vim when installing

Not too happy with trying to run this crap inside of vim, so opted to
just run the install script directly once it's downloaded.
This commit is contained in:
Josh Sherman 2020-01-29 22:50:03 -06:00
parent 9dc104c070
commit db4effff2b
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

View file

@ -110,7 +110,9 @@ done
curl -o "$HOME/.vim/colors/solarized.vim" https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim
# Finishes installing CoC
vim +"call coc#util#install()" +qa
# vim +"call coc#util#install()" +qa
cd "$HOME/.vim/pack/plugins/start/coc.nvim" || exit
./install.sh nightly
cd "$HOME" || exit
rm -f "${HOME}/.zcompdump*"