diff options
Diffstat (limited to 'fnl')
| -rw-r--r-- | fnl/plugins/editor/orgmode.fnl | 13 |
1 files changed, 10 insertions, 3 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))) + (orgmode.setup opts) + (bullets.setup {:concealcursor true}))) -{1 :nvim-orgmode/orgmode : config : init :event :VeryLazy : keys} +{1 :nvim-orgmode/orgmode + :dependencies :akinsho/org-bullets.nvim + :ft :org + : config + : init + : keys} |