diff options
author | Grant Shoshin Shangreaux <shoshin@cicadas.surf> | 2023-04-05 09:53:17 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2023-05-12 21:38:06 -0500 |
commit | fc31e03b6bb07dc9d60e1c9d39ffdc379cd8593c (patch) | |
tree | bc4d248c8063d49b8f7ee3c3169fc6c01c46006a /shoshimacs.org | |
parent | 0e7514e33b76a44ce6e0d3a68f9bab726015c5c7 (diff) |
Fix: undeclared org-directory var
Diffstat (limited to 'shoshimacs.org')
-rw-r--r-- | shoshimacs.org | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shoshimacs.org b/shoshimacs.org index 04fe728..85b6ad4 100644 --- a/shoshimacs.org +++ b/shoshimacs.org @@ -708,7 +708,7 @@ Org capture is a way to quickly get entries from various places into one of your org files. #+begin_src emacs-lisp - (setq org-directory "~/org") + (setq org-directory (expand-file-name "~/Nextcloud/org")) (setq org-default-notes-file (concat org-directory "/notes.org")) (setq org-capture-templates |