diff options
Diffstat (limited to 'fnl/plugins')
| -rw-r--r-- | fnl/plugins/editor/orgmode.fnl | 15 | 
1 files changed, 11 insertions, 4 deletions
diff --git a/fnl/plugins/editor/orgmode.fnl b/fnl/plugins/editor/orgmode.fnl index 0628401..abf98f7 100644 --- a/fnl/plugins/editor/orgmode.fnl +++ b/fnl/plugins/editor/orgmode.fnl @@ -46,8 +46,15 @@               :org_agenda_templates templates})  (fn config [] -  (let [orgmode (require :orgmode)] +  (let [orgmode (require :orgmode) +        bullets (require :org-bullets)]      (orgmode.setup_ts_grammar) -    (orgmode.setup opts))) - -{1 :nvim-orgmode/orgmode : config : init :event :VeryLazy : keys} +    (orgmode.setup opts) +    (bullets.setup {:concealcursor true}))) + +{1 :nvim-orgmode/orgmode + :dependencies :akinsho/org-bullets.nvim + :ft :org + : config + : init + : keys}  |