summaryrefslogtreecommitdiff
path: root/fnl/config/packer.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-03 21:23:05 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-03 21:23:05 +0200
commit4a84ab7258c1352127afa2d85b8a03c29f269f48 (patch)
tree57592190a326c0c560594a21680216bcd5cce4fb /fnl/config/packer.fnl
parent7b10b6088138840ac46c3fd9b1246f451c4bb8bd (diff)
feat(packer): add fnl config
Diffstat (limited to 'fnl/config/packer.fnl')
-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}))}})))