diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-11 17:40:24 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-11 17:40:24 -0700 |
commit | 78f4d5113b8bb349c03f96b033cbecfe0df8c299 (patch) | |
tree | 6d6d67cbe901faa61569930153dcd2eda882cf95 /emacs/custom | |
parent | org: load `ox-md` (diff) | |
download | emacs.d-78f4d5113b8bb349c03f96b033cbecfe0df8c299.tar.gz |
org: add a capture template for elfeed
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-org.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/custom/my-org.el b/emacs/custom/my-org.el index 2d8e294..77d428c 100644 --- a/emacs/custom/my-org.el +++ b/emacs/custom/my-org.el @@ -103,6 +103,11 @@ ("n" "Note" entry (file "notes.org") "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n") + ("f" "elfeed" entry (file "inbox.org") + ,(concat "* TODO %:elfeed-entry-title\n" + ":PROPERTIES:\n:CREATED: %T\n:END:\n" + "%a\n")) + ("j" "Journal" entry (file+olp+datetree "journal.org") "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n" :tree-type day))) |