diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-18T20·55+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-18T20·55+0000 |
commit | a2f07f24e0f33965a305fe17aca5b749ba3c326e (patch) | |
tree | 2f6956cfc448a88ab560e380e250a226c2da5a56 /configs/shared | |
parent | 0de3c5a14f8deca93db8e3a26116c15fb12a00a1 (diff) |
Support an org-capture template for misc shopping
Sometimes just capturing what I want to buy is as satisfying as actually buying the item. These org-capture templates really alleviate a lot of the anxiety I associate with trying to remember many things.
Diffstat (limited to 'configs/shared')
-rw-r--r-- | configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el index 06e2a27bf948..a6e108e93860 100644 --- a/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el +++ b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el @@ -27,6 +27,11 @@ "Tasks") "* %? ") + ("s" "shopping list" entry (file+headline + ,(f-join (getenv "ORG_DIRECTORY") "shopping.org") + "Items") + "* TODO %? ") + )) (evil-set-initial-state 'org-mode 'insert) |