From 647750c18c4ae2c6e1fb610813b3b0cc2c1324bf Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 2 Jan 2020 01:30:50 -0500 Subject: [PATCH] Add org heading support to bookmark.el --- modules/lang/org/config.el | 4 ++++ modules/lang/org/packages.el | 1 + 2 files changed, 5 insertions(+) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 34c49501b..cba098154 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -791,6 +791,10 @@ compelling reason, so..." :config (setq toc-org-hrefify-default "gh")) +(use-package! org-bookmark-heading ; add org heading support to bookmark.el + :after (:or bookmark org)) + + (use-package! org-bullets ; "prettier" bullets :hook (org-mode . org-bullets-mode)) diff --git a/modules/lang/org/packages.el b/modules/lang/org/packages.el index 91b04d25b..09277f344 100644 --- a/modules/lang/org/packages.el +++ b/modules/lang/org/packages.el @@ -35,6 +35,7 @@ (package! ox-clip) (package! toc-org) (package! org-cliplink) +(package! org-bookmark-heading) (when (featurep! :editor evil +everywhere) (package! evil-org :recipe (:host github :repo "hlissner/evil-org-mode")))