Move sched file to git

master
Jacopo De Simoi 2 years ago
parent fb92f633a8
commit 3285242e22
  1. 21
      global.org

@ -1138,12 +1138,12 @@
(setq org-agenda-files (setq org-agenda-files
'("~/org/master.org" '("~/org/master.org"
"~/org/orgzly/work.org" "~/org/orgzly/work.org"
"~/org/orgzly/scheduled.org"
"~/org/orgzly/hack.org" "~/org/orgzly/hack.org"
"~/org/orgzly/library.org" "~/org/orgzly/library.org"
"~/org/kaizen.org" "~/org/kaizen.org"
"~/org/orgzly/refile.org" "~/org/orgzly/refile.org"
"~/clones/orgzly/refile-git.org")) "~/clones/orgzly/refile-git.org"
"~/clones/orgzly/calendar.org"))
#+end_src #+end_src
Use less verbose reminders: Use less verbose reminders:
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -1725,16 +1725,17 @@
The Idea, journal and break entry The Idea, journal and break entry
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq org-default-notes-file "~/org/master.org") (setq org-default-notes-file "~/org/master.org")
(setq wilder/org-calendar-file "~/clones/orgzly/calendar.org")
(setq org-capture-templates (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) "* 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) "* 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) "* 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) "* 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) "* TENTATIVE %?\n %a" :clock-in t :clock-resume t)
("i" "Idea" entry (file+headline "~/org/master.org" "Ideas") ("i" "Idea" entry (file+headline "~/org/master.org" "Ideas")
@ -1743,12 +1744,12 @@
"* %?\n%U\n" :clock-in t :clock-resume t) "* %?\n%U\n" :clock-in t :clock-resume t)
("b" "Break" entry (file+datetree "~/org/master.org") ("b" "Break" entry (file+datetree "~/org/master.org")
"* break %?\n" :clock-in t :clock-resume t) "* 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:%?") "* 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 "* TODO Reply to %:from \nSCHEDULED: %(org-insert-time-stamp
(org-read-date nil t \"+0d\"))\n%a\n%?\n") (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))) "* TODO Attend %(format-zoom-meeting)\n%a" :immediate-finish t)))
#+end_src #+end_src
*** LaTeX export *** LaTeX export

Loading…
Cancel
Save