Set up org-chef with a capture template
This commit is contained in:
parent
c325d268dc
commit
fc2ebefa68
7
+org.el
7
+org.el
|
@ -84,3 +84,10 @@
|
|||
org-pomodoro-short-break-length '15
|
||||
org-pomodoro-long-break-length '30
|
||||
org-pomodoro-audio-player "pw-play")
|
||||
;; Define capture templates
|
||||
(setq org-capture-templates
|
||||
'(("c" "Cookbook" entry (file "~/Notes/Recipes.org")
|
||||
"%(org-chef-get-recipe-from-url)"
|
||||
:empty-lines 1)))
|
||||
;; Fix org-chef scraping
|
||||
(setq org-chef-prefer-json-ld t)
|
||||
|
|
|
@ -6,3 +6,4 @@
|
|||
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
||||
;; (package! builtin-package :disable t)
|
||||
(package! org-super-agenda)
|
||||
(package! org-chef)
|
||||
|
|
Loading…
Reference in New Issue