diff options
Diffstat (limited to 'fnl/install.fnl')
-rw-r--r-- | fnl/install.fnl | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/fnl/install.fnl b/fnl/install.fnl index d6eef2c..d80de8f 100644 --- a/fnl/install.fnl +++ b/fnl/install.fnl @@ -1,14 +1,9 @@ ;; Installs plugins with packer. -(module install - {autoload { - a aniseed.core - plugins plugins - packer packer}}) +(module install {autoload {a aniseed.core plugins plugins packer packer}}) (defn- install-plugins [plgs] - (packer.startup ( - fn [use] - (each [plugin opts (pairs plgs)] - (use (a.assoc opts 1 plugin)))))) + (packer.startup (fn [use] + (each [plugin opts (pairs plgs)] + (use (a.assoc opts 1 plugin)))))) (install-plugins plugins.plugins) |