Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
install: do not install packer.nvim in opt dir anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed May 2, 2021
1 parent 748981f commit 2928aa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ install_nvim_nightly() {
}

install_packer() {
if [[ ! -d "$HOME/.local/share/nvim/site/pack/packer/opt/packer.nvim" ]]; then
if [[ ! -d "$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim" ]]; then
log_info "Installing packer.nvim ..."
git clone -q https://github.com/wbthomason/packer.nvim $HOME/.local/share/nvim/site/pack/packer/opt/packer.nvim
git clone -q https://github.com/wbthomason/packer.nvim $HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
log_success "Successfully installed packer.nvim"
fi
}
Expand Down

0 comments on commit 2928aa7

Please sign in to comment.