This commit is contained in:
Eli Mellen 2019-09-04 16:17:38 -04:00
parent 15122efe40
commit 51b0e70e79
2 changed files with 9 additions and 2 deletions

View File

@ -62,4 +62,5 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
'(org-done ((t (:foreground "PaleGreen" :weight normal :strike-through t))))
'(org-headline-done ((((class color) (min-colors 16) (background dark)) (:foreground "#5E81AC" :strike-through t)))))

View File

@ -181,7 +181,13 @@ I've been waffling a lot, lately, and also enjoying light themes.
:ensure t
:config
(setq org-todo-keywords
'((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE"))))
'((sequence "TODO" "IN-PROCESS" "FOLLOW-UP" "|" "DONE")))
(setq org-fontify-done-headline t)
(custom-set-faces
'(org-done ((t (:foreground "#5DA7AA" :weight normal :strike-through t))))
'(org-headline-done
((((class color) (min-colors 16) (background light))
(:foreground "#5E81AC" :strike-through t))))))
(use-package org-bullets
:ensure t