diff --git a/.doom.d/config.org b/.doom.d/config.org index 15d22c8..5c8e828 100644 --- a/.doom.d/config.org +++ b/.doom.d/config.org @@ -382,6 +382,10 @@ Set up my capture templates for making new notes and journal entries. ("n" "Note" entry (file+headline "~/Nextcloud/org/personal.org" "Notes") "* %^{Description}\n%U\n\n%?") + ("c" "Cookbook Recipe" entry + (file "~/org/cookbook/index.org") + "%(org-chef-get-recipe-from-url)" + :empty-lines 1) ;; Org-Protocol ("b" "Bookmark" entry (file+headline "~/org/bookmarks.org" "Unsorted") @@ -885,6 +889,11 @@ Gorgeous HTML exports. (org-journal-dir "~/org-aweber") (org-journal-date-format "%A, %d %B %Y")) #+end_src +*** Cookbook +#+begin_src emacs-lisp + (use-package! org-chef + :commands (org-chef-get-recipe-from-url)) +#+end_src *** Ref Tools for linking and taking notes on books and papers. diff --git a/.doom.d/packages.el b/.doom.d/packages.el index 496093d..9b1d3e4 100644 --- a/.doom.d/packages.el +++ b/.doom.d/packages.el @@ -27,6 +27,7 @@ (package! nov) (package! ob-http) (package! scad-mode) +(package! org-chef) (package! org-msg) (package! org-ref) (package! org-roam-bibtex :recipe (:host github :repo "org-roam/org-roam-bibtex"))