Set up org-chef with a capture template

This commit is contained in:
coolneng 2022-04-03 18:15:31 +02:00
parent c325d268dc
commit fc2ebefa68
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 8 additions and 0 deletions

View File

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

View File

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