aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules/bard-emacs-org.el
diff options
context:
space:
mode:
authorbard <[email protected]>2023-10-11 19:37:47 -0400
committerbard <[email protected]>2023-10-11 19:37:47 -0400
commit3a4941d2b5064e3dbd05d9d94aa4a27f5fa44871 (patch)
tree1356410ae1fa2f60317114e4e843780dd259b504 /bard-emacs-modules/bard-emacs-org.el
parentc3c420180524fccebf4624ed155ea694ba605b1b (diff)
org-protocol capture templates for quick link saving
Diffstat (limited to 'bard-emacs-modules/bard-emacs-org.el')
-rw-r--r--bard-emacs-modules/bard-emacs-org.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el
index 1e4e50d..d08412e 100644
--- a/bard-emacs-modules/bard-emacs-org.el
+++ b/bard-emacs-modules/bard-emacs-org.el
@@ -78,6 +78,7 @@
;; Org capture templates
(define-key global-map (kbd "C-`") #'org-capture)
+(require 'org-protocol)
(setq org-capture-templates
'(("h" "Homework" entry (file+olp "~/Notes/Org-Roam/todo.org" "Inbox" "Homework")
"* TODO %?")
@@ -85,6 +86,10 @@
"* TODO %?")
("r" "Reading List" entry (file+olp "~/Notes/Org-Roam/todo.org" "Inbox" "Watch/Read List")
"* %?")
+ ("p" "Protocol" entry (file+olp "~/Notes/Org-Roam/todo.org" "Inbox" "Quotes")
+ "* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n\n%?")
+ ("L" "Protocol Link" entry (file+olp "~/Notes/Org-Roam/todo.org" "Inbox" "Watch/Read List")
+ "* [[%:link][%:description]] \nCaptured On: %U \n** Notes:\n%?")
("j" "Journal" entry (file+datetree "~/Notes/Org-Roam/journal.org")
"* %U %^{Title}\n %?")
("a" "Appointment" entry (file+heading "~/Notes/Org-Roam/todo.org" "Appointment")