|
|
|
|
@ -411,11 +411,11 @@ |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
(global-set-key (kbd "C-c a") 'org-agenda) |
|
|
|
|
#+END_SRC |
|
|
|
|
Define agenda files: the main one is ~notes.org~, but then I have a bunch |
|
|
|
|
Define agenda files: the main one is ~master.org~, but then I have a bunch |
|
|
|
|
of them on orgzly |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
(setq org-agenda-files |
|
|
|
|
'("~/org/notes.org" |
|
|
|
|
'("~/org/master.org" |
|
|
|
|
"~/org/orgzly/work.org" |
|
|
|
|
"~/org/orgzly/hack.org" |
|
|
|
|
"~/org/orgzly/live.org" |
|
|
|
|
@ -476,23 +476,23 @@ |
|
|
|
|
This is my capture template: it needs to be revised as I really do not use |
|
|
|
|
The Idea, journal and break entry |
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
|
(setq org-default-notes-file "~/org/notes.org") |
|
|
|
|
(setq org-default-notes-file "~/org/master.org") |
|
|
|
|
(setq org-capture-templates |
|
|
|
|
'(("t" "TODO today" entry (file+headline "~/org/notes.org" "Tasks") |
|
|
|
|
'(("t" "TODO today" entry (file+headline "~/org/master.org" "Tasks") |
|
|
|
|
"* TODO %?\n SCHEDULED: %t" :clock-in t :clock-resume t) |
|
|
|
|
("n" "TODO next" entry (file+headline "~/org/notes.org" "Tasks") |
|
|
|
|
("n" "TODO next" entry (file+headline "~/org/master.org" "Tasks") |
|
|
|
|
"* NEXT %?\n " :clock-in t :clock-resume t) |
|
|
|
|
("T" "TODO" entry (file+headline "~/org/notes.org" "Tasks") |
|
|
|
|
("T" "TODO" entry (file+headline "~/org/master.org" "Tasks") |
|
|
|
|
"* TODO %?\n %a" :clock-in t :clock-resume t) |
|
|
|
|
("i" "Idea" entry (file+headline "~/org/notes.org" "Ideas") |
|
|
|
|
("i" "Idea" entry (file+headline "~/org/master.org" "Ideas") |
|
|
|
|
"* IDEA %?\n %u" :clock-in t :clock-resume t ) |
|
|
|
|
("j" "Journal" entry (file+datetree "~/org/notes.org") |
|
|
|
|
("j" "Journal" entry (file+datetree "~/org/master.org") |
|
|
|
|
"* %?\n%U\n" :clock-in t :clock-resume t) |
|
|
|
|
("b" "Break" entry (file+datetree "~/org/notes.org") |
|
|
|
|
("b" "Break" entry (file+datetree "~/org/master.org") |
|
|
|
|
"* break %?\n" :clock-in t :clock-resume t) |
|
|
|
|
("e" "Mail To" entry (file+headline "~/org/notes.org" "E-mails") |
|
|
|
|
("e" "Mail To" entry (file+headline "~/org/master.org" "E-mails") |
|
|
|
|
"* DONE mailto:%?") |
|
|
|
|
("r" "Reply to" entry (file+headline "~/org/notes.org" "E-mails") |
|
|
|
|
("r" "Reply to" entry (file+headline "~/org/master.org" "E-mails") |
|
|
|
|
"* DONE mailto:%?"))) |
|
|
|
|
#+END_SRC |
|
|
|
|
*** Source blocks |
|
|
|
|
|