diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-02-11 08:28:51 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-02-11 08:28:51 -0800 |
commit | 9b1ea5952a64c1d69b626c9931f885eb49fa3fe9 (patch) | |
tree | f9e404f2e6e9ccadb926972d0dac4bfd37a09c31 /emacs | |
parent | org: don't change the default ellipsis (diff) | |
download | emacs.d-9b1ea5952a64c1d69b626c9931f885eb49fa3fe9.tar.gz |
org: change the default priorities
Increase the number of available priorities, and set the default to C when creating a new task.
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) |