[emacs] Add org-protocol capture style

This commit is contained in:
2020-10-26 00:50:32 -04:00
parent 3b1ec20d1f
commit b1dcc289e5
2 changed files with 14 additions and 9 deletions

View File

@ -120,7 +120,7 @@
(add-hook 'org-mode-hook #'doom-disable-line-numbers-h)
(after! org
(after! org
(setq org-directory (expand-file-name "~/var/org/")
org-agenda-files (file-expand-wildcards "~/var/org/2020-*")
org-pretty-entities t
@ -132,11 +132,14 @@
org-fontify-quote-and-verse-blocks t
org-ellipsis ""
org-image-actual-width '(600)
org-protocol-default-template-key "l"
org-capture-templates
'(("i" "Send to inbox" entry (file "~/var/org/inbox.org")
"* TODO %?\n"))
'(("i" "Send to inbox" entry (file "~/var/org/inbox.org")
"* TODO %?\n")
("l" "Link" entry (file "~/var/org/inbox.org")
"* TODO %a\n %?\n %i"))
org-todo-keywords
'((sequence "TODO(t)" "NEXT(n)" "MAYBE(m)" "|" "DONE(d)" "WONTDO(w)"))
'((sequence "TODO(t)" "NEXT(n)" "MAYBE(m)" "|" "DONE(d)" "WONTDO(w)"))
org-modules '(ol-eshell
ol-notmuch
ob-eval