summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-02 17:15:26 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-02 17:15:26 +0000
commit029e562d2039d0d2fd3b2e7e585164a8bb9c4b71 (patch)
treeea8dd4fbd7e5074eeb91afeb1bff96d0f1e52d87 /init.el
parent5ed556549917476338139a3e207d1cf4db578bd1 (diff)
Lots of nice org capture improvements
Diffstat (limited to '')
-rw-r--r--init.el17
1 files changed, 15 insertions, 2 deletions
diff --git a/init.el b/init.el
index 4215ebc..8d08364 100644
--- a/init.el
+++ b/init.el
@@ -629,8 +629,21 @@
:prepend t)
("j" "Journal" entry (file+datetree "~/Nextcloud/org/journal.org")
"* %?\nEntered on %U\n %i\n %a")
- ("e" "Emacs Tip" entry (file+headline "~/Nextcloud/org/emacs-tips.org" "Emacs Tips")
- "* %?\n %i\n %a"))))
+ ("w" "Work Notes and Journaling")
+ ("wn" "Note" entry (file+headline "~/Nextcloud/org/dft.org" "Notes")
+ "* %?\n\t")
+ ("wc" "Note from Clipboard" entry (file+headline "~/Nextcloud/org/dft.org" "Notes")
+ "* %?\n\t\n%c")
+ ("wr" "Note from Region" entry (file+headline "~/Nextcloud/org/dft.org" "Notes")
+ "* %?\n\t\n%i")
+ ("wj" "Journal" entry (file+olp+datetree "~/Nextcloud/org/dft.org" "Journal")
+ "* %?\n\tEntered on %U\n")
+ ("e" "Emacs Tip")
+ ("et" "Emacs Tip" entry (file+headline "~/Nextcloud/org/emacs-tips.org" "Emacs Tips")
+ "* %?\n\t%a")
+ ("er" "Emacs Tip from Region" entry (file+headline "~/Nextcloud/org/emacs-tips.org" "Emacs Tips")
+ "* %?\n\t%i")
+ )))
;; Put state transition logs into a drawer called LOGBOOK
(setq org-log-into-drawer t)