From d28d883b499d8405b38f0faeb428df0806e5ac0e Mon Sep 17 00:00:00 2001 From: V Date: Sat, 3 Dec 2022 21:56:50 +0400 Subject: [PATCH] Update .scripts/install_base.sh --- dot_scripts/executable_install_base.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_scripts/executable_install_base.sh b/dot_scripts/executable_install_base.sh index b9b5cd8..c920737 100755 --- a/dot_scripts/executable_install_base.sh +++ b/dot_scripts/executable_install_base.sh @@ -46,9 +46,9 @@ else fi ## Neovim -if [ ! -f ~/.vim/autoload/plug.vim ]; then +if [ ! -f ~/.local/share/nvim/autoload/plug.vim ]; then echo "Installing vim-plug" - curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim + curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim else echo "vim-plug already installed" fi