Skip to content

Commit

Permalink
Merge pull request #17 from ksauzz/fix/nvim-plug
Browse files Browse the repository at this point in the history
vim: fix vim-plug installation and upgrade it
  • Loading branch information
ksauzz authored Dec 14, 2023
2 parents fa3c547 + e079d89 commit 98aff65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ configure_gitignore(){

install_vim_plug() {
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/0.10.0/plug.vim
https://raw.githubusercontent.com/junegunn/vim-plug/0.11.0/plug.vim
mkdir -p ~/.local/share/nvim/site/autoload/
if [ ! -L "$HOME/.$file" ]; then
if [ ! -L ~/.local/share/nvim/site/autoload/plug.vim ]; then
ln -vs ~/.vim/autoload/plug.vim ~/.local/share/nvim/site/autoload/
fi
}
Expand Down

0 comments on commit 98aff65

Please sign in to comment.