Remove org-agenda

This commit is contained in:
Lars Tveito 2020-03-10 20:50:50 +01:00
parent 1dc9d1a375
commit 35ee4d89ee

View File

@ -648,20 +648,6 @@
** Org
I use =org-agenda= along with =org-capture= for appointments and such.
#+BEGIN_SRC emacs-lisp
(setq org-agenda-files '("~/Dropbox/agenda.org") ; A list of agenda files
org-agenda-default-appointment-duration 120 ; 2 hours appointments
org-capture-templates ; Template for adding tasks
'(("t" "Oppgave" entry (file+headline "~/Dropbox/agenda.org" "Oppgaver")
"** TODO %?" :prepend t)
("m" "Master" entry (file+olp "~/Dropbox/agenda.org" "Oppgaver" "Master")
"*** TODO %?" :prepend t)
("a" "Avtale" entry (file+headline "~/Dropbox/agenda.org" "Avtaler")
"** %?\n SCHEDULED: %T" :prepend t)))
#+END_SRC
When editing org-files with source-blocks, we want the source blocks to
be themed as they would in their native mode.