summaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorArnaud Bailly <arnaud.oqube@gmail.com>2020-01-11 09:41:44 +0100
committerArnaud Bailly <arnaud.oqube@gmail.com>2020-01-11 09:41:44 +0100
commit294cc30e668ccba95fce3344b815850f918707f1 (patch)
tree1ebc81496b8d9815d36e2a339562e04b1bd9bd9c /.emacs
parent4ba5fc8adef53d71992aa1bcbeb50e7ece908330 (diff)
downloaddotfiles-294cc30e668ccba95fce3344b815850f918707f1.tar.gz
tweak org-capture stuff after joining palo
Diffstat (limited to '.emacs')
-rw-r--r--.emacs10
1 files changed, 8 insertions, 2 deletions
diff --git a/.emacs b/.emacs
index 7d94413..90bed7e 100644
--- a/.emacs
+++ b/.emacs
@@ -99,10 +99,14 @@
"*** TODO %?\n %i\n %a")
("j" "Journal" entry (file+datetree "~/log/journal.org")
"* %?\nEntered on %U\n %i\n %a")
- ("s" "Symbiont" entry (file+datetree "~/log/symbiont.org")
+ ("p" "Palo-IT" entry (file+datetree "~/log/palo-it.org")
"* %?\nEntered on %U\n %i\n %a")
- ("p" "Capture" entry (file+datetree "~/log/journal.org")
+ ("P" "Capture" entry (file+datetree "~/log/journal.org")
"* %c\n%i" :immediate-finish t)
+ ("w" "Handle email@work" entry (file+datetree "~/log/palo-it.org")
+ "**** TODO %a %?\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))")
+;; ("w" "Handle email@home" entry (file+datetree "~/log/journal.org")
+;; "**** TODO %a %?\nDEADLINE: %(org-insert-time-stamp (org-read-date nil t \"+2d\"))")
("L" "Capture link" entry (file+datetree "~/log/journal.org")
"* %? [[%:link][%:description]] \nCaptured On: %U" :immediate-finish t)))
@@ -110,10 +114,12 @@
(setq org-todo-keywords
'((sequence "TODO(t)" "DOING(i)" "|" "DONE(d)")
+ (sequence "FOLLOWUP(f)" "|" "DONE(d)")
(sequence "WAITING(w)" "|" "CANCELLED(c)")))
(setq org-todo-keyword-faces
(quote (("TODO" :foreground "red" :weight bold)
+ ("FOLLOWUP" :foreground "red" :weight bold)
("NEXT" :foreground "blue" :weight bold)
("DONE" :foreground "forest green" :weight bold)
("DOING" :foreground "orange" :weight bold)