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/lir.fnl | |
| parent | 68c0f6bab06ea587b9b258d1ad3b0c9870bc163f (diff) | |
Refactor loading of plugins with packer
Diffstat (limited to 'fnl/config/lir.fnl')
| -rw-r--r-- | fnl/config/lir.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/config/lir.fnl b/fnl/config/lir.fnl index c775c4b..8f9058c 100644 --- a/fnl/config/lir.fnl +++ b/fnl/config/lir.fnl @@ -1,5 +1,5 @@ ;; Simple file manager. -(module config.lir {autoload {: util nvim aniseed.nvim}}) +(module config.lir {autoload {:util :config.util nvim aniseed.nvim}}) (defn- opts [actions mark-actions clipboard-actions] {:show_hidden_files false @@ -35,7 +35,7 @@ ":<C-u>lua require(\"lir.mark.actions\").toggle_mark(\"v\")<CR>" {:noremap true :silent true}))}) -(let [lir (util.load-plugin :lir)] +(let [lir (util.prequire :lir)] (let [actions (require :lir.actions) mark-actions (require :lir.mark.actions) clipboard-actions (require :lir.clipboard.actions)] |