aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2023-10-24 20:27:44 -0500
committerToby Vincent <tobyv@tobyvin.dev>2023-10-24 20:27:44 -0500
commit4cbb0e393b47c1b17456249575509d2d58c4196c (patch)
treed4729d6ffc02c20d916971bc7d05cd9d1550521a
parent1e84ce93684c7743930bbb578ec1b9e84dca48ae (diff)
fix(nvim): use Lazy install to install plugins
-rwxr-xr-xnvim/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/nvim/install.sh b/nvim/install.sh
index ebdc311..02c7aae 100755
--- a/nvim/install.sh
+++ b/nvim/install.sh
@@ -5,9 +5,9 @@ if ! command -v "nvim" >/dev/null; then
exit 0
fi
-printf "%s: Restoring plugins\n" "$0"
+printf "%s: Installing plugins\n" "$0"
-nvim --headless -c 'Lazy! restore' -c qa
+nvim --headless -c 'Lazy! install' -c qa
nvim --headless -c 'Lazy! clean' -c qa
printf "%s: Installing treesitter parsers\n" "$0"