summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/install.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2023-08-27 12:53:28 -0500
committerToby Vincent <tobyv@tobyvin.dev>2023-08-27 12:53:28 -0500
commit83e2e8e049c157743f50f618c71923a016645551 (patch)
tree579b0f0a1023ce1e3ff99fb91494271ee38214e6 /nvim/install.sh
parenta8e3437a948cf75195193c7f30356e2bea3388b7 (diff)
fix: simplify install script
Diffstat (limited to 'nvim/install.sh')
-rwxr-xr-xnvim/install.sh9
1 files changed, 2 insertions, 7 deletions
diff --git a/nvim/install.sh b/nvim/install.sh
index 106125f..f4efb7c 100755
--- a/nvim/install.sh
+++ b/nvim/install.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/sh
+#!/bin/sh
SCRIPT="$0"
@@ -6,11 +6,6 @@ say() {
printf "%s: %s\n" "$SCRIPT" "$@"
}
-# Update plugins
-say "Updating plugins to lock-file"
+say "Installing plugins..."
nvim --headless -c 'Lazy! restore' -c qa
nvim --headless -c 'Lazy! clean' -c qa
-
-# Update LSP servers
-say "Updating LSP servers"
-nvim --headless -c 'autocmd User MasonUpdateAllComplete quitall' -c 'MasonUpdateAll'