summaryrefslogtreecommitdiff
path: root/fnl/install.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/install.fnl')
-rw-r--r--fnl/install.fnl18
1 files changed, 0 insertions, 18 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl
deleted file mode 100644
index 6f37ae8..0000000
--- a/fnl/install.fnl
+++ /dev/null
@@ -1,18 +0,0 @@
-;; Installs plugins with packer.
-(module install
- {autoload {a aniseed.core
- packer packer
- plugins plugins
- util util}})
-
-(defn- sync []
- (if (= util.num-plugins 3)
- (packer.sync)))
-
-(defn- install []
- (packer.startup (fn [use]
- (each [plugin opts (pairs plugins.plugins)]
- (use (a.assoc opts 1 plugin))))))
-
-(install)
-(sync)