Bläddra i källkod

Fix org capture templates, finally #orgmode

Colin Powell 6 år sedan
förälder
incheckning
e66ed56a6b
1 ändrade filer med 9 tillägg och 10 borttagningar
  1. 9 10
      emacs/.config/doom/+org.el

+ 9 - 10
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