diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-11-29 14:31:13 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-11-29 14:31:13 +0100 |
commit | 4e90428bb7527c8ca6f4dd4b333d971bb6a0e218 (patch) | |
tree | 4350391b1d7f0b631165b61db4732af87ad7977b /fnl/plugins | |
parent | 0b0935cd19bc8db39b92d463654d8ed664d220a9 (diff) |
Add bullets to orgmode
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} |