Skip to content

Commit

Permalink
vim: fix vim-plug installation and upgrade it
Browse files Browse the repository at this point in the history
  • Loading branch information
ksauzz committed Dec 14, 2023
1 parent fa3c547 commit e079d89
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 e079d89

Please sign in to comment.