diff options
author | sefidel <contact@sefidel.net> | 2022-02-11 00:38:15 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-11 00:38:15 +0900 |
commit | 846813e174b8a42ace40bddaf3d64d8ead63b874 (patch) | |
tree | 471271ffb817e9e28b1c7a09142dfbe68d59374d /fnl/nvrc/macro | |
parent | 26bb3be1c460be53ad0b85da858fdd6576eef1b4 (diff) | |
download | nvimrc-846813e174b8a42ace40bddaf3d64d8ead63b874.tar.gz nvimrc-846813e174b8a42ace40bddaf3d64d8ead63b874.zip |
feat(pack)!: migrate to fzf-lua
Diffstat (limited to 'fnl/nvrc/macro')
-rw-r--r-- | fnl/nvrc/macro/pack.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/nvrc/macro/pack.fnl b/fnl/nvrc/macro/pack.fnl index 5ba7896..0adb18a 100644 --- a/fnl/nvrc/macro/pack.fnl +++ b/fnl/nvrc/macro/pack.fnl @@ -25,7 +25,7 @@ options (collect [k v (pairs options)] (if (= k :req) (values :config (format "require('nvrc.packs.%s')" v)) - (= k :init) (values :config (format "require('%s').setup()" v)) + (= k :init) (values :config (format "require('%s').setup({})" v)) (= k :defer) (values :setup (format "require('nvrc.utils').defer_unpack('%s', 5)" v)) (values k v)))] (doto options |