From 5d0d05877508d8e24095e29e983bde5617f565ae Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 7 Mar 2016 10:25:18 -0800 Subject: [emacs] Use unicode symbols for org tasks status. Instead of using keyworks like 'TODO', 'DOING', let's use some unicode characters to represent the status. Set a different color of each status too. --- emacs.d/core/core-org.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'emacs.d') diff --git a/emacs.d/core/core-org.el b/emacs.d/core/core-org.el index 84b28f9..85abeed 100644 --- a/emacs.d/core/core-org.el +++ b/emacs.d/core/core-org.el @@ -23,7 +23,13 @@ org-default-notes-file (concat org-directory "/refile.org") org-refile-targets '((org-agenda-files . (:maxlevel . 6))) org-outline-path-complete-in-steps t - org-todo-keywords '((sequence "TODO(t)" "DOING(i!)" "WAITING(w!)" "|" "DONE(d!)" "CANCEL(c!)")) + org-todo-keywords '((sequence "➜(t)" "⎔(i!)" "•(w!)" "|" "✔(d!)" "✘(c!)")) + org-todo-keyword-faces + (quote (("➜" :foreground "red" :weight bold) + ("✔" :foreground "forest green" :weight bold) + ("⎔" :foreground "orange" :weight bold) + ("•" :foreground "magenta" :weight bold) + ("✘" :foreground "forest green" :weight bold))) org-link-abbrev-alist '(("src" . "~/src/%s") ("jira" . "https://jira.twitter.biz/browse/%s") ("rb" . "https://reviewboard.twitter.biz/r/%s") @@ -31,7 +37,7 @@ ("gdoc" . "https://docs.google.com/document/d/%s") ("gsheet" . "https://docs.google.com/spreadsheets/d/%s")) org-capture-templates '(("t" "Todo" entry (file+headline (concat org-directory "/refile.org") "Tasks") - "* TODO %?\n %i") + "* ➜ %?\n %i") ("m" "Meeting" entry (file+headline (concat org-directory "/twitter.org") "Meetings") "* %T %?\n %i") ("q" "Quick Note" entry (file+headline (concat org-directory "/refile.org") "Notes") -- cgit 1.4.1