diff options
Diffstat (limited to 'fnl/config/orgmode.fnl')
-rw-r--r-- | fnl/config/orgmode.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/config/orgmode.fnl b/fnl/config/orgmode.fnl index 25501af..a21eaa0 100644 --- a/fnl/config/orgmode.fnl +++ b/fnl/config/orgmode.fnl @@ -1,5 +1,5 @@ ;; Orgmode for nvim. -(module config.orgmode {autoload {nvim aniseed.nvim : util}}) +(module config.orgmode {autoload {nvim aniseed.nvim util config.util}}) (nvim.ex.set :conceallevel=2) (nvim.ex.set :concealcursor=nc) @@ -44,6 +44,6 @@ :org_agenda_templates templates : notifications}) -(let [orgmode (util.load-plugin :orgmode)] +(let [orgmode (util.prequire :orgmode)] (orgmode.setup_ts_grammar) (orgmode.setup opts)) |