|
|
|
|
@ -1138,12 +1138,12 @@ |
|
|
|
|
(setq org-agenda-files |
|
|
|
|
'("~/org/master.org" |
|
|
|
|
"~/org/orgzly/work.org" |
|
|
|
|
"~/org/orgzly/scheduled.org" |
|
|
|
|
"~/org/orgzly/hack.org" |
|
|
|
|
"~/org/orgzly/library.org" |
|
|
|
|
"~/org/kaizen.org" |
|
|
|
|
"~/org/orgzly/refile.org" |
|
|
|
|
"~/clones/orgzly/refile-git.org")) |
|
|
|
|
"~/clones/orgzly/refile-git.org" |
|
|
|
|
"~/clones/orgzly/calendar.org")) |
|
|
|
|
#+end_src |
|
|
|
|
Use less verbose reminders: |
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
|
@ -1725,16 +1725,17 @@ |
|
|
|
|
The Idea, journal and break entry |
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
|
(setq org-default-notes-file "~/org/master.org") |
|
|
|
|
(setq wilder/org-calendar-file "~/clones/orgzly/calendar.org") |
|
|
|
|
(setq org-capture-templates |
|
|
|
|
'(("t" "TODO today" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
`(("t" "TODO today" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* TODO %?\n SCHEDULED: %t\n %a" :clock-in t :clock-resume t) |
|
|
|
|
("N" "DOING right now" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
("N" "DOING right now" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* ONGOING %?\n SCHEDULED: %T\n %a" :clock-in t :clock-keep t) |
|
|
|
|
("n" "TODO next" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
("n" "TODO next" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* NEXT %?\n " :clock-in t :clock-resume t) |
|
|
|
|
("T" "TODO" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
("T" "TODO" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* TODO %?\n %a" :clock-in t :clock-resume t) |
|
|
|
|
("M" "TENTATIVE" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
("M" "TENTATIVE" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* TENTATIVE %?\n %a" :clock-in t :clock-resume t) |
|
|
|
|
|
|
|
|
|
("i" "Idea" entry (file+headline "~/org/master.org" "Ideas") |
|
|
|
|
@ -1743,12 +1744,12 @@ |
|
|
|
|
"* %?\n%U\n" :clock-in t :clock-resume t) |
|
|
|
|
("b" "Break" entry (file+datetree "~/org/master.org") |
|
|
|
|
"* break %?\n" :clock-in t :clock-resume t) |
|
|
|
|
("e" "Mail To" entry (file+headline "~/org/orgzly/scheduled.org" "E-mails") |
|
|
|
|
("e" "Mail To" entry (file+headline ,wilder/org-calendar-file "E-mails") |
|
|
|
|
"* DONE mailto:%?") |
|
|
|
|
("R" "Reply" entry (file+headline "~/org/orgzly/scheduled.org" "E-Mails") |
|
|
|
|
("R" "Reply" entry (file+headline ,wilder/org-calendar-file "E-Mails") |
|
|
|
|
"* TODO Reply to %:from \nSCHEDULED: %(org-insert-time-stamp |
|
|
|
|
(org-read-date nil t \"+0d\"))\n%a\n%?\n") |
|
|
|
|
("z" "Zoom meeting" entry (file+headline "~/org/orgzly/scheduled.org" "Tasks") |
|
|
|
|
("z" "Zoom meeting" entry (file+headline ,wilder/org-calendar-file "Tasks") |
|
|
|
|
"* TODO Attend %(format-zoom-meeting)\n%a" :immediate-finish t))) |
|
|
|
|
#+end_src |
|
|
|
|
*** LaTeX export |
|
|
|
|
|