diff options
author | Chris <[email protected]> | 2021-03-19 01:28:08 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-19 01:28:08 -0400 |
commit | e4d15fba889d11b1294b6d646021be0f82acb655 (patch) | |
tree | bd06b4ab5e83d95df198f8dfdce62606e5d19f6e | |
parent | 1a65c0eccd10ec9706782f320a41b85e8ad4bb32 (diff) |
update
-rwxr-xr-x | utils/installer/install-nv-code.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/install-nv-code.sh b/utils/installer/install-nv-code.sh index 84f8c161..a2d8f7c9 100755 --- a/utils/installer/install-nv-code.sh +++ b/utils/installer/install-nv-code.sh @@ -57,7 +57,7 @@ installpynvim() { installpacker() { git clone https://github.com/wbthomason/packer.nvim\ - ~/.local/share/nvim/site/pack/packer/opt/packer.nvim + ~/.local/share/nvim/site/pack/packer/start/packer.nvim } cloneconfig() { @@ -125,7 +125,7 @@ pip3 list | grep pynvim >/dev/null && echo "pynvim installed, moving on..." || i # move old nvim directory if it exists # [ -d "$HOME/.config/nvim" ] && moveoldnvim -if [ -a "$HOME/.local/share/nvim/site/pack/packer/opt/packer.nvim" ]; then +if [ -a "$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim" ]; then echo 'packer already installed' else installpacker |