[emacs] Add org-chef

This commit is contained in:
Correl Roush 2023-05-23 00:07:46 -04:00
parent 5458215dfb
commit c014d04b4a
2 changed files with 10 additions and 0 deletions

View file

@ -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.

View file

@ -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"))