aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-07-05 23:28:36 -0700
committerGravatar Tom Willemse2021-07-05 23:28:36 -0700
commita37f274ce84e59569f16c7e6ed162d674d199ddb (patch)
tree81c28b6e6c56805cd01c45361645057fba7edc59 /oni-org
parentb80c4f4321c443c38fbdc3a7e3cc4dc52faa2afd (diff)
downloademacs-config-a37f274ce84e59569f16c7e6ed162d674d199ddb.tar.gz
emacs-config-a37f274ce84e59569f16c7e6ed162d674d199ddb.zip
[oni-org] Capture most output into my inbox file
Diffstat (limited to 'oni-org')
-rw-r--r--oni-org/oni-org.el15
1 files changed, 7 insertions, 8 deletions
diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el
index 9dbad99..7db2e44 100644
--- a/oni-org/oni-org.el
+++ b/oni-org/oni-org.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2021.0701.185951
+;; Version: 2021.0705.232822
;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org org-contrib org-bullets org-edna diminish all-the-icons olivetti)
;; This program is free software; you can redistribute it and/or modify
@@ -511,23 +511,22 @@ After running it once remove it from `org-capture-after-finalize-hook'."
(format "[[%s][%s]]" url title)))
(setq org-capture-templates
- `(("i" "Inbox" entry (file "")
+ `(("i" "Inbox" entry (file ,(oni-org-expand-to-home "documents/gtd/inbox.org"))
(file ,(expand-file-name "inbox.org" oni-org-capture-template-directory)))
- ("I" "Inbox (add selection)" entry (file "")
+ ("I" "Inbox (add selection)" entry (file ,(oni-org-expand-to-home "documents/gtd/inbox.org"))
(file ,(expand-file-name "inbox-with-selection.org" oni-org-capture-template-directory)))
- ("t" "Task" entry (file "")
+ ("t" "Task" entry (file ,(oni-org-expand-to-home "documents/gtd/inbox.org"))
(file ,(expand-file-name "task.org" oni-org-capture-template-directory)))
("a" "Appointment" entry (file "")
(file ,(expand-file-name "appointment.org" oni-org-capture-template-directory)))
- ("u" "URL to read" entry (file "")
+ ("u" "URL to read" entry (file ,(oni-org-expand-to-home "documents/gtd/inbox.org"))
(file ,(expand-file-name "reading-url.org" oni-org-capture-template-directory))
:immediate-finish t)
- ("U" "URL to read" entry (file "")
+ ("U" "URL to read" entry (file ,(expand-file-name "documents/gtd/inbox.org"))
(file ,(expand-file-name "reading-url-protocol.org" oni-org-capture-template-directory))
:immediate-finish t)
("j" "Journal entry" entry
- (file+olp+datetree
- ,(oni-org-expand-to-home "documents/gtd/journal.org"))
+ (file+olp+datetree ,(oni-org-expand-to-home "documents/gtd/journal.org"))
(file ,(expand-file-name "journal.org" oni-org-capture-template-directory)))
("n" "Reading note" item (function oni-org-reading-note)
(file ,(expand-file-name "reading-note.org" oni-org-capture-template-directory))