diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 17:38:00 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 17:38:00 +0000 |
commit | ce5e3429b2d2b6b669bcad59c5e45880b3cd4427 (patch) | |
tree | 4dce0914962a4ba5eca1c7a319d188d56890f0b0 /doom.d/config.el | |
parent | 7dba737ba4484d752549e0b870cc72b0173aacf7 (diff) |
Added org capture - needs to be finessed to put it in right place
Diffstat (limited to 'doom.d/config.el')
-rw-r--r-- | doom.d/config.el | 4 |
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) |