diff options
author | aktersnurra <grydholm@kth.se> | 2022-05-01 12:14:12 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-05-01 12:14:12 +0200 |
commit | e168099f785731074ff5e0f4410cff0fd1caf9d5 (patch) | |
tree | d1ab013b1d9c0b31857e01767d352260e7936c53 | |
parent | ea83d990a4cfe98ffb8676ff237a05a84ab3578d (diff) |
style(packer): format
-rw-r--r-- | fnl/config/packer.fnl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/fnl/config/packer.fnl b/fnl/config/packer.fnl index 6796cb2..09c7ca2 100644 --- a/fnl/config/packer.fnl +++ b/fnl/config/packer.fnl @@ -2,6 +2,10 @@ (module config.packer {autoload {util util}}) -(let [packer (util.load-plugin :packer) packer-util (require :packer.util)] - (packer.init {:display {:open_fn (fn [] - (packer-util.float {:border :rounded}))}})) +(let [packer (util.load-plugin :packer) + packer-util (require :packer.util)] + (packer.init + {:display + {:open_fn + (fn [] + (packer-util.float {:border :rounded}))}})) |