Emacs: switch org sorting strategy

This commit is contained in:
Marcel Kapfer 2018-07-09 15:20:48 +02:00
parent b24e99b166
commit 582fba7ef7
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 3 additions and 8 deletions

View File

@ -479,6 +479,9 @@
;; show tasks in the next 14 days
(setq org-agenda-span (quote fortnight))
;; org sorthing strategy
(setq org-agenda-sorting-strategy '(time-up priority-down))
;; don't show tasks as scheduled if they are already shown as a deadline
(setq org-agenda-skip-scheduled-if-deadline-is-shown t)
@ -486,14 +489,6 @@
;; if they are scheduled to be done
(setq org-agenda-skip-deadline-prewarning-if-scheduled (quote pre-scheduled))
;; sort tasks in order of when they are due and then by priority
(setq org-agenda-sorting-strategy
(quote
((agenda deadline-up priority-down)
(todo priority-down category-keep)
(tags priority-down category-keep)
(search category-keep))))
;; mu4e connection
(require 'org-mu4e)