diff options
Diffstat (limited to '')
-rw-r--r-- | init.el | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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) |