diff --git a/bootstrap.org b/bootstrap.org index 1266e26..e5f86e6 100644 --- a/bootstrap.org +++ b/bootstrap.org @@ -244,7 +244,8 @@ With this function, we can test/debug/reload any individual file, via: (interactive (list (completing-read "Org file: " (ha-hamacs-files :all)))) (let ((full-file (f-join hamacs-source-dir file))) (when (f-exists? full-file) - (org-babel-load-file full-file)))) + (ignore-errors + (org-babel-load-file full-file))))) #+end_src And we can now reload /all/ startup files: diff --git a/ha-email.org b/ha-email.org index 7324adc..357d428 100644 --- a/ha-email.org +++ b/ha-email.org @@ -751,7 +751,7 @@ The idea of linking org documents to email could be nice, however, the =ol-notmu :straight (:type built-in) :config (add-to-list 'org-modules 'ol-notmuch)) #+end_src -To use, read a message and save a link to it with ~SPC o l~. Next, in an org document, create a link with ~SPC m l~. Now, you can return to the message from that document with ~SPC m o~. Regardless, I may need to store a local copy when I upgrade Org. +To use, read a message and save a link to it with ~SPC o l~. Next, in an org document, create a link with ~, l~. Now, you can return to the message from that document with ~, o~. Regardless, I may need to store a local copy when I upgrade Org. * Display Configuration Using the [[https://github.com/seagle0128/doom-modeline][Doom Modeline]] to add notifications: #+begin_src emacs-lisp