diff options
author | Franck Cuny <franck@fcuny.net> | 2021-10-16 08:05:57 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-10-16 08:05:57 -0700 |
commit | 8d046dde3ece0d82cd3a6ac18099cca80bfaf607 (patch) | |
tree | 9273a4374836d08979f3839580a9aafec9aa2bcf /emacs/custom | |
parent | org: define TODO keywords as a sequence (diff) | |
download | emacs.d-8d046dde3ece0d82cd3a6ac18099cca80bfaf607.tar.gz |
emacs: replace org-bullets with org-superstar
Apparently org-bullets is not supported anymore Signed-off-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'emacs/custom')
-rw-r--r-- | emacs/custom/fcuny-org.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/custom/fcuny-org.el b/emacs/custom/fcuny-org.el index 653de9d..ffb2793 100644 --- a/emacs/custom/fcuny-org.el +++ b/emacs/custom/fcuny-org.el @@ -140,10 +140,10 @@ (org-agenda-files `(,(expand-file-name "tasks.org" org-directory))) (org-agenda-skip-function '(org-agenda-skip-entry-if 'deadline 'scheduled)))))))) -(use-package org-bullets +(use-package org-superstar :ensure t :after (org) - :hook (org-mode . org-bullets-mode)) + :hook (org-mode . org-superstar-mode)) (use-package org-capture :ensure nil |