aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-10-30 17:38:00 +0000
committerMatthew Lemon <matt@matthewlemon.com>2022-10-30 17:38:00 +0000
commitce5e3429b2d2b6b669bcad59c5e45880b3cd4427 (patch)
tree4dce0914962a4ba5eca1c7a319d188d56890f0b0
parent7dba737ba4484d752549e0b870cc72b0173aacf7 (diff)
Added org capture - needs to be finessed to put it in right place
-rw-r--r--doom.d/config.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/doom.d/config.el b/doom.d/config.el
index b9120d7..6c1796e 100644
--- a/doom.d/config.el
+++ b/doom.d/config.el
@@ -44,6 +44,8 @@
;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads!
;;
+;;
+(require 'org-protocol)
;; Basic agenda stuff
@@ -152,6 +154,8 @@
;; org capture templates
(setq org-capture-templates
(quote (("h" "Home Tasks & Notes")
+ ("x" "Protocol Capture" entry (file+headline "~/org/home.org" "Tasks")
+ "** %:link - %:description\n%:i\nEntered on %U\n")
("ht" "Home TODO" entry (file+headline "~/org/home.org" "Tasks")
"** TODO %?\nEntered on %U\n"
:prepend t)