From 9dc104c070a5391b81faabf81430b2e1fb190119 Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Wed, 29 Jan 2020 22:44:06 -0600 Subject: [PATCH] fix(install): move coc to after solarized Running the command too soon threw an error due to the color scheme file not being present. --- install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install b/install index 8e62aeb..cdc6f57 100755 --- a/install +++ b/install @@ -107,11 +107,11 @@ for INDEX in ${!VIMPLUGS[*]}; do $GITCLONE "https://github.com/$VIMPLUG.git" "$HOME/.vim/pack/plugins/start/$PLUGDIR" 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 -curl -o "$HOME/.vim/colors/solarized.vim" https://raw.githubusercontent.com/altercation/vim-colors-solarized/master/colors/solarized.vim - cd "$HOME" || exit rm -f "${HOME}/.zcompdump*"