Fix org capture templates, finally #orgmode

This commit is contained in:
Colin Powell
2019-01-17 10:49:43 -05:00
parent 725b410dc0
commit e66ed56a6b

View File

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