From e66ed56a6bf7d6c1b1dbc0d5190705152c626439 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 17 Jan 2019 10:49:43 -0500 Subject: [PATCH] Fix org capture templates, finally #orgmode --- emacs/.config/doom/+org.el | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/emacs/.config/doom/+org.el b/emacs/.config/doom/+org.el index 488a00c..2375cf9 100644 --- a/emacs/.config/doom/+org.el +++ b/emacs/.config/doom/+org.el @@ -24,16 +24,15 @@ org-bullets-face-name (quote org-bullet-face) org-bullets-bullet-list '("■" "◆" "▲" "▶") org-capture-templates - '(("i" "Send to inbox" entry (file+headline "~/org/inbox.org" "Inbox") - "* TODO %?\n %i\n %a") - ("n" "Create new note" entry (file "~/org/notes.org") - "* %?\nEntered on %U\n %i\n %a") - ("e" "Elation related note" entry (file "~/org/elation.org") - "* %?\nEntered on %U\n %i\n %a") - ("g" "Add glossary note" entry (file "~/org/glossary.org") - "* %?\nEntered on %U\n %i\n") - ("d" "Add an idea" entry (file "~/org/ideas.org") - "* %?\nEntered on %U\n %i\n")) + '( + ("i" "Send to inbox" entry (file+headline "~/org/inbox.org" "Inbox") + "* TODO %?\n") + ("l" "Send to inbox with link" entry (file+headline "~/org/inbox.org" "Inbox") + "* TODO %?\n %i\n %a") + ("w" "Work diary entry" entry (file "~/org/work_diary.org") + "* %u\n%?\n") + ("n" "Add an idea" entry (file "~/org/ideas.org") + "* %?\nEntered on %U\n")) org-agenda-include-diary nil