diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-org.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index c4195ff..108fb86 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -66,7 +66,7 @@ _g n_: go to notes ;; priorities (org-priority-start-cycle-with-default nil) ;; Start one over/under default value. - (org-lowest-priority ?D) + (org-lowest-priority ?F) (org-default-priority ?D) ;; Ensures unset tasks have low priority. ;; how to manage tasks @@ -233,7 +233,7 @@ _g n_: go to notes (org-capture-templates `(("t" "Add task" entry (file ,org-default-inbox-file) - "* TODO %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n") + "* TODO [#C] %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n") ("n" "Note" entry (file ,org-default-inbox-file) |