Add org heading support to bookmark.el

This commit is contained in:
Henrik Lissner 2020-01-02 01:30:50 -05:00
parent 13e2eefae1
commit 647750c18c
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 5 additions and 0 deletions

View file

@ -791,6 +791,10 @@ compelling reason, so..."
:config (setq toc-org-hrefify-default "gh")) :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 (use-package! org-bullets ; "prettier" bullets
:hook (org-mode . org-bullets-mode)) :hook (org-mode . org-bullets-mode))

View file

@ -35,6 +35,7 @@
(package! ox-clip) (package! ox-clip)
(package! toc-org) (package! toc-org)
(package! org-cliplink) (package! org-cliplink)
(package! org-bookmark-heading)
(when (featurep! :editor evil +everywhere) (when (featurep! :editor evil +everywhere)
(package! evil-org :recipe (:host github :repo "hlissner/evil-org-mode"))) (package! evil-org :recipe (:host github :repo "hlissner/evil-org-mode")))