summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 21:31:54 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-11 21:31:54 +0200
commit893f0a079932308eb5d403b443bd5658b7134e17 (patch)
tree6ea27db7336f86e26a948d4dbf4c74966cce7ec8
parent6a397a209d5dad871af751064507d6d4aaafbae7 (diff)
fix(bootstrap): try nil check
-rw-r--r--fnl/install.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl
index 3f1f14b..913d6c7 100644
--- a/fnl/install.fnl
+++ b/fnl/install.fnl
@@ -8,7 +8,7 @@
(packer.startup (fn [use]
(each [plugin opts (pairs plgs)]
(use (a.assoc opts 1 plugin)))))
- (if (vim.env.BOOTSTRAPPED)
+ (if (vim.env.BOOTSTRAPPED)?
(packer.sync)))
(install-plugins plugins.plugins)