summaryrefslogtreecommitdiff
path: root/fnl/install.fnl
diff options
context:
space:
mode:
authoraktersnurra <grydholm@kth.se>2022-04-24 20:10:28 +0200
committeraktersnurra <grydholm@kth.se>2022-04-24 20:10:28 +0200
commit987f698c932ad75c461b81e035d5eb1788051dd5 (patch)
treecc7770f2e514d5647bf10dc8de7aa2f75c5be449 /fnl/install.fnl
parenta0db1140e12c6254e4f25caa703e46de5f1ef6b3 (diff)
refactor(init): clean up
Diffstat (limited to 'fnl/install.fnl')
-rw-r--r--fnl/install.fnl23
1 files changed, 13 insertions, 10 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl
index af034d6..6f37ae8 100644
--- a/fnl/install.fnl
+++ b/fnl/install.fnl
@@ -1,15 +1,18 @@
;; Installs plugins with packer.
-(module install {autoload {a aniseed.core
- packer packer
- plugins plugins
- util util}})
+(module install
+ {autoload {a aniseed.core
+ packer packer
+ plugins plugins
+ util util}})
-(defn- install-plugins [plgs]
+(defn- sync []
+ (if (= util.num-plugins 3)
+ (packer.sync)))
+
+(defn- install []
(packer.startup (fn [use]
- (each [plugin opts (pairs plgs)]
+ (each [plugin opts (pairs plugins.plugins)]
(use (a.assoc opts 1 plugin))))))
-(require :config.packer)
-(install-plugins plugins.plugins)
-(if (= util.num-plugins 3)
- (packer.sync))
+(install)
+(sync)