diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 01:40:16 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 01:40:16 +0200 |
| commit | 6cb31718df762c6ebf764986074f08b19d6f82f8 (patch) | |
| tree | 4bc60c9d94de082914ea9ab2d488114caff4edd4 /fnl/config/minibar.fnl | |
| parent | 68c0f6bab06ea587b9b258d1ad3b0c9870bc163f (diff) | |
Refactor loading of plugins with packer
Diffstat (limited to 'fnl/config/minibar.fnl')
| -rw-r--r-- | fnl/config/minibar.fnl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fnl/config/minibar.fnl b/fnl/config/minibar.fnl index fddb71c..21d687a 100644 --- a/fnl/config/minibar.fnl +++ b/fnl/config/minibar.fnl @@ -1,4 +1,4 @@ -(module config.minibar {autoload {: util}}) +(module config.minibar {autoload {:util :config.util}}) (def- opts {:ignore-filetypes [:help :startify @@ -10,6 +10,7 @@ :alpha :lir :org + :netrw :Outline :NeogitStatus :NeogitCommitMessage @@ -25,4 +26,4 @@ :InsertEnter :BufWritePost]}) -(util.use-config :minibar opts) +(util.setup :minibar opts) |