diff --git a/config.org b/config.org index e34a788..b3cfa64 100644 --- a/config.org +++ b/config.org @@ -853,6 +853,11 @@ Org overwrites RET and C-j, so I need to disable the rebinds *** Org Capture #+BEGIN_SRC emacs-lisp (pcase my/whoami + ("home" + (setq org-capture-templates + `(("n" "note" entry (org-default-notes-file)) + ("c" "coding todo" entry (file+headline ,(concat PATH_ORG_FILES "tasks.org") "Tasks") + "* TODO %?\n %i\n\n")))) ("work_remote" (setq org-capture-templates '(("t" "todo" entry (file (concat PATH_ORG_FILES "todo.org")) @@ -865,6 +870,10 @@ Org overwrites RET and C-j, so I need to disable the rebinds ) #+END_SRC +#+RESULTS: +| n | note | entry | (file org-default-notes-file) | | +| c | coding todo | entry | (file+headline (concat PATH_ORG_FILES tasks.org) Tasks) | * TODO %^{Task} | + ** Org babel languages This code block is linux specific. Loading languages which aren't available seems to be a problem. New: Load languages on demand. I need to test if this works as intended.