diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-20 23:45:35 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-20 23:45:35 +0200 |
commit | ef67dd9a66b7b278ecac3d6ddcb6f4347f20bb3c (patch) | |
tree | 86de753b29659c21ab69c08687a02160be9c71a3 /fnl/config/packer.fnl | |
parent | c8e5a9d85ecefad2bf754596e4a47be59e666369 (diff) |
fix(packer): loading problem
Diffstat (limited to 'fnl/config/packer.fnl')
-rw-r--r-- | fnl/config/packer.fnl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fnl/config/packer.fnl b/fnl/config/packer.fnl index 9d6a016..6441ab0 100644 --- a/fnl/config/packer.fnl +++ b/fnl/config/packer.fnl @@ -1,7 +1,6 @@ ;; Load packer config (module config.packer {autoload {util util}}) -(let [packer (util.load-plugin :packer)] +(let [packer (util.load-plugin :packer) packer-util (require :packer.util)] (packer.init {:display {:open_fn (fn [] - ((require :packer.util).float - {:border :rounded}))}})) + (packer-util.float {:border :rounded}))}})) |