diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:31:54 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 21:31:54 +0200 |
commit | 893f0a079932308eb5d403b443bd5658b7134e17 (patch) | |
tree | 6ea27db7336f86e26a948d4dbf4c74966cce7ec8 /fnl | |
parent | 6a397a209d5dad871af751064507d6d4aaafbae7 (diff) |
fix(bootstrap): try nil check
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/install.fnl | 2 |
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) |