summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-org.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 308b59b..efb2e74 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -21,6 +21,16 @@
("n" todo "NEXT" nil)
("d" "Agenda + Next Actions" ((agenda) (todo "NEXT")))))
+(defun my/modify-org-done-face ()
+ (setq org-fontify-done-headline t)
+ (set-face-attribute 'org-done nil :strike-through t)
+ (set-face-attribute 'org-headline-done nil
+ :strike-through t
+ :foreground "light gray"))
+
+(eval-after-load "org"
+ (add-hook 'org-add-hook 'my/modify-org-done-face))
+
(defun gtd ()
(interactive)
(find-file (concat org-directory "/master.org")))