summaryrefslogtreecommitdiff
path: root/fnl/config/packer.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config/packer.fnl')
-rw-r--r--fnl/config/packer.fnl11
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}))}}))