diff options
Diffstat (limited to '')
-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) |