From f4d1215567a194d520bffdceb0bcb06ba4910cea Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 14 Jan 2024 08:23:27 +0000 Subject: [PATCH] Move Org and References directories into ~/Documents/ --- README.org | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 41bf2d9..18d663c 100644 --- a/README.org +++ b/README.org @@ -446,7 +446,7 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia For reference information, see [[https://orgmode.com][Org-mode website]] #+begin_src emacs-lisp :results output silent - (setq org-directory "~/Org" + (setq org-directory "~/Documents/Org" org-default-notes-file (expand-file-name "notes.org" org-directory) org-pretty-entities-include-sub-superscripts t org-pretty-entities-include-sub-superscripts t @@ -560,14 +560,13 @@ For reference information, see [[https://orgmode.com][Org-mode website]] (org-noter-doc-property-in-notes t) (org-noter-notes-search-path (list (expand-file-name org-directory) - (expand-file-name "~/References/library/") - (expand-file-name "~/Documents/"))) + (expand-file-name "~/Documents/References/library/"))) (org-noter-prefer-root-as-file-level nil)) #+end_src ** Citar #+begin_src emacs-lisp :results output silent - (let ((citar-base-directory "~/References")) + (let ((citar-base-directory "~/Documents/References")) (setq citar-bibliography (expand-file-name "main.bib" citar-base-directory) citar-library-paths (list (expand-file-name "library" citar-base-directory)) citar-notes-paths (list (expand-file-name "notes" citar-base-directory))))