From f59543d9f179d4f0d2839cafb00f4c1b7962f51b Mon Sep 17 00:00:00 2001 From: snow flurry Date: Sat, 6 Aug 2022 19:33:18 -0700 Subject: [PATCH] install.sh: don't need to install vim-plug! --- install.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/install.sh b/install.sh index 1b198d5..97dca9b 100755 --- a/install.sh +++ b/install.sh @@ -3,9 +3,3 @@ set -e stow $PWD/base git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm -if command -v nvim >/dev/null ; then - echo "Installing Neovim plugins..." - curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ - https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim - nvim +'PlugInstall --sync' +'UpdateRemotePlugins' +qa -fi