Browse Source

first capture templates for home

master
Marc Pohling 6 years ago
parent
commit
5f5a23dcab
1 changed files with 9 additions and 0 deletions
  1. 9
      config.org

9
config.org

@ -853,6 +853,11 @@ Org overwrites RET and C-j, so I need to disable the rebinds
*** Org Capture *** Org Capture
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(pcase my/whoami (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" ("work_remote"
(setq org-capture-templates (setq org-capture-templates
'(("t" "todo" entry (file (concat PATH_ORG_FILES "todo.org")) '(("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 #+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 ** Org babel languages
This code block is linux specific. Loading languages which aren't available seems to be a problem. 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. New: Load languages on demand. I need to test if this works as intended.

Loading…
Cancel
Save