diff options
-rw-r--r-- | smart-documents.org | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/smart-documents.org b/smart-documents.org index 4c8672d..426025c 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -1242,12 +1242,30 @@ files for which the heading or body contain a matching =org-time-stamp=.[fn::An =org-time-stamp= can be inserted with ~C-c .~ (period)] -We open the agenda in a separate window. +*** Open agenda in separate frame -#+BEGIN_SRC emacs-lisp :tangle no +We open the agenda in a separate frame. + +#+BEGIN_SRC emacs-lisp :tangle yes (setq org-agenda-window-setup 'other-frame) #+END_SRC +*** Diary file + +The diary file can be included in all agenda views. + +#+BEGIN_SRC emacs-lisp :tangle yes + (setq org-agenda-diary-file "~/org/PERSONAL/diary/diary.org") +#+END_SRC + +*** List of agenda files + +The list of agenda files is saved at the following location. + +#+BEGIN_SRC emacs-lisp :tangle yes + (setq org-agenda-files (concat sd-path-meta "org-agenda-files")) +#+END_SRC + ** LaTeX export We'll be compiling our documents with LuaTeX. This will afford us some |