From 2894c48e792b6a78c6ddf6155d1b7bd48f75830d Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 8 Jun 2022 16:55:38 +0200 Subject: [PATCH] Sort Org entries also by ascending effort MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The idea is that items with identical priority but low effort are „more worthy“ than items with higher efforts (same gain = priority with lower effort). --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 84cd497..ecb57ef 100644 --- a/init.el +++ b/init.el @@ -1015,10 +1015,10 @@ org-agenda-span 1 org-agenda-insert-diary-strategy 'top-level org-catch-invisible-edits 'show - org-agenda-sorting-strategy '((agenda time-up habit-up priority-down) - (todo priority-down category-keep) - (tags priority-down category-keep) - (search category-keep)) + org-agenda-sorting-strategy '((agenda time-up priority-down effort-up category-keep) + (todo priority-down effort-up category-keep) + (tags priority-down effort-up category-keep) + (search priority-down effort-up category-keep)) org-agenda-window-setup 'current-window org-agenda-restore-windows-after-quit t org-agenda-compact-blocks nil