Setup org-chef
This commit is contained in:
parent
4ea2d6d3a0
commit
bf344011ce
12
config.org
12
config.org
|
@ -620,6 +620,18 @@ Then, hook into babel and apply those colors
|
|||
(ansi-color-apply-on-region beg end))))))
|
||||
(add-hook 'org-babel-after-execute-hook 'nm/babel-ansi))
|
||||
#+end_src
|
||||
** Org Chef
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! org-chef
|
||||
:config
|
||||
(add-to-list 'org-capture-templates
|
||||
'("c" "Cookbook" entry (file "~/Org/cookbook.org")
|
||||
"%(org-chef-get-recipe-from-url)"
|
||||
:empty-lines 1))
|
||||
(add-to-list 'org-capture-templates
|
||||
'("m" "Manual Cookbook" entry (file "~/Org/cookbook.org")
|
||||
"* %^{Recipe title: }\n :PROPERTIES:\n :source-url:\n :servings:\n :prep-time:\n :cook-time:\n :ready-in:\n :END:\n** Ingredients\n %?\n** Directions\n\n")))
|
||||
#+end_src
|
||||
* General Modes
|
||||
** Magit
|
||||
Further configuration for magit
|
||||
|
|
|
@ -73,3 +73,4 @@
|
|||
:repo "idris-community/idris2-mode"
|
||||
:branch "main"))
|
||||
(package! per-buffer-theme)
|
||||
(package! org-chef)
|
||||
|
|
Loading…
Reference in New Issue