aboutsummaryrefslogtreecommitdiff
path: root/docs/Nvim_setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Nvim_setup.sh')
-rwxr-xr-xdocs/Nvim_setup.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/Nvim_setup.sh b/docs/Nvim_setup.sh
index 5edb844..cf793d6 100755
--- a/docs/Nvim_setup.sh
+++ b/docs/Nvim_setup.sh
@@ -130,7 +130,7 @@ if [[ ! -f "$CTAGS_DIR/bin/ctags" ]]; then
rm -rf "$CTAGS_SRC_DIR"
fi
- git clone "$CTAGS_LINK" "$CTAGS_SRC_DIR" && cd "$CTAGS_SRC_DIR"
+ git clone --depth=1 "$CTAGS_LINK" "$CTAGS_SRC_DIR" && cd "$CTAGS_SRC_DIR"
./autogen.sh && ./configure --prefix="$CTAGS_DIR"
make -j && make install
@@ -176,12 +176,13 @@ if [[ -d "$NVIM_CONFIG_DIR" ]]; then
mv "$NVIM_CONFIG_DIR" "$NVIM_CONFIG_DIR.backup"
fi
-git clone https://github.com/jdhao/nvim-config.git "$NVIM_CONFIG_DIR"
+git clone --depth=1 https://github.com/jdhao/nvim-config.git "$NVIM_CONFIG_DIR"
-echo "Installing vim-plug"
-curl -fLo "$NVIM_SITE_DIR/autoload/plug.vim" --create-dirs https://cdn.jsdelivr.net/gh/junegunn/vim-plug/plug.vim
+echo "Installing packer.nvim"
+git clone --depth=1 https://github.com/wbthomason/packer.nvim \
+ ~/.local/share/nvim/site/pack/packer/start/packer.nvim
echo "Installing plugins"
-"$NVIM_DIR/bin/nvim" +PlugInstall +qall
+"$NVIM_DIR/bin/nvim" +PackerInstall +qall
echo "Finished installing Neovim and its dependencies!"