summaryrefslogtreecommitdiff
path: root/fnl/install.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/install.fnl')
-rw-r--r--fnl/install.fnl11
1 files changed, 5 insertions, 6 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl
index 39948b8..d6eef2c 100644
--- a/fnl/install.fnl
+++ b/fnl/install.fnl
@@ -5,11 +5,10 @@
plugins plugins
packer packer}})
-(defn- install-plugins [...]
- (let [plgs ...]
- (packer.startup (
- fn [use]
- (each [plugin opts (pairs plgs)]
- (use (a.assoc opts 1 plugin)))))))
+(defn- install-plugins [plgs]
+ (packer.startup (
+ fn [use]
+ (each [plugin opts (pairs plgs)]
+ (use (a.assoc opts 1 plugin))))))
(install-plugins plugins.plugins)