diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 22:32:53 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-07 22:32:53 +0200 |
commit | 71d538630b226da37e4ef21c5a84d6fad5f55421 (patch) | |
tree | 5f87a9c1194a556d12ffca79ea98a08d76af548e /fnl/config/packer.fnl | |
parent | fa9a5c6b80b5b0ffdcddc4b1d1c6cfe887d0bb04 (diff) |
fix(load plugin): correct loading err
Diffstat (limited to 'fnl/config/packer.fnl')
-rw-r--r-- | fnl/config/packer.fnl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/fnl/config/packer.fnl b/fnl/config/packer.fnl index 0bd8aef..0c5611b 100644 --- a/fnl/config/packer.fnl +++ b/fnl/config/packer.fnl @@ -2,9 +2,8 @@ (module config.packer {autoload {util util}}) -(let [(ok? packer) util.load-plugin :packer] - (when ok? - (packer.init { - :display { - :open_fn (fn [] - ((require :packer.util).float {:border :rounded}))}}))) +(let [packer (util.load-plugin :packer)] + (packer.init { + :display { + :open_fn (fn [] + ((require :packer.util).float {:border :rounded}))}})) |