summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fnl/config/packer.fnl9
1 files changed, 9 insertions, 0 deletions
diff --git a/fnl/config/packer.fnl b/fnl/config/packer.fnl
new file mode 100644
index 0000000..ccc9ad8
--- /dev/null
+++ b/fnl/config/packer.fnl
@@ -0,0 +1,9 @@
+;; Load packer config
+(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}))}})))