diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:23:05 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:23:05 +0200 |
commit | 4a84ab7258c1352127afa2d85b8a03c29f269f48 (patch) | |
tree | 57592190a326c0c560594a21680216bcd5cce4fb | |
parent | 7b10b6088138840ac46c3fd9b1246f451c4bb8bd (diff) |
feat(packer): add fnl config
-rw-r--r-- | fnl/config/packer.fnl | 9 |
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}))}}))) |