aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-emacs-org.el
diff options
context:
space:
mode:
authorbard <[email protected]>2023-12-19 17:43:51 -0500
committerbard <[email protected]>2023-12-19 17:43:51 -0500
commitf22310f8323bee542bcae82faaea9c328cd8ee45 (patch)
tree1076b0ab0ebe166b36bf2de8ad6d8bd361c6251f /bard-emacs-modules/bard-emacs-org.el
parent31380b8aeae7c724569fe4255bea7629e31d5fce (diff)
hl-todo support for ef/modus themes
Diffstat (limited to 'bard-emacs-modules/bard-emacs-org.el')
-rw-r--r--bard-emacs-modules/bard-emacs-org.el17
1 files changed, 11 insertions, 6 deletions
diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el
index 7f72b24..5b6cc9f 100644
--- a/bard-emacs-modules/bard-emacs-org.el
+++ b/bard-emacs-modules/bard-emacs-org.el
@@ -17,12 +17,17 @@
org-image-actual-width '(600)
org-insert-heading-respect-content t)
-;; Org todo keywords
-(setq org-todo-keywords '((sequence "TODO(t)" "WAIT(w)" "|" "DONE(d)" "KILLED(k)"))
- org-todo-keyword-faces '(("TODO" . (:weight bold :foreground "#CC9393" :weight bold))
- ("WAIT" . (:weight bold :foreground "#DFAF8F" :weight bold))
- ("DONE" . (:weight bold :weight bold :foreground "#AFD8AF"))
- ("KILLED" . (:weight bold :weight bold :foreground "#656555"))))
+;; Org todo keywords - changed to using hl-todo faces fixed by modus/ef themes
+;; (setq org-todo-keywords '((sequence "TODO(t)" "WAIT(w)" "|" "DONE(d)" "KILLED(k)"))
+;; org-todo-keyword-faces '(("TODO" . (:weight bold :foreground "#CC9393" :weight bold))
+;; ("WAIT" . (:weight bold :foreground "#DFAF8F" :weight bold))
+;; ("DONE" . (:weight bold :weight bold :foreground "#AFD8AF"))
+;; ("KILLED" . (:weight bold :weight bold :foreground "#656555")))
+;; org-todo-keyword-faces '(("TODO" . (:weight bold :foreground "#ff5f59" :weight bold))
+;; ("WAIT" . (:weight bold :foreground "#fec43f" :weight bold))
+;; ("DONE" . (:weight bold :weight bold :foreground "#44bc44"))
+;; ("KILLED" . (:weight bold :weight bold :foreground "#989898")))
+;; )
;; Org Mode Key map
(defun bard/org-mode-keybindings ()