Emacs: Strike through headlines for DONE tasks in Org
I wanted a quick way to visually distinguish DONE tasks from tasks I still need to do. This handy snippet from the Emacs Org-mode mailing list does the trick by striking through the headlines for DONE tasks.
Here’s the code:
(setq org-fontify-done-headline t) (custom-set-faces '(org-done ((t (:foreground "PaleGreen" :weight normal :strike-through t)))) '(org-headline-done ((((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon" :strike-through t)))))Short URL: http://sachachua.com/blog/p/24270
-
http://gravatar.com/ispinfx ispinfx
-
Anonymous Coward
-
aap
-
Mathias Dahl
-
Mathias Dahl
-
Jeremy LeJyBy
-
Jeremy LeJyBy
-
http://users.dcc.uchile.cl/~jbarbay/ Jeremy ‘LeJyBy’ Barbay
I'm 