From 162497485c3c6094c71d85fb455a046927fb8c84 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Mon, 9 Jul 2018 15:20:59 +0200 Subject: [PATCH] Emacs: org-superagenda --- emacs/emacs.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 0dd8bdb..33f7333 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -503,6 +503,25 @@ :hook (org-mode-hook . flyspell-mode)) +;; org-super-agenda +;; Supercharge your Org daily/weekly agenda by grouping items +(use-package org-super-agenda + :after org + :init (org-super-agenda-mode 1) + :config (let ((org-super-agenda-groups + '( + (:name "Today" + :time-grid t + :scheduled today) + (:name "Important from the past" + :and (:priority "A" :scheduled past)) + (:name "Important" + :and (:priority "A" :scheduled futu)) + (:name "Scheduled earlier" + :scheduled past) + (:priority<= "B")))) + (org-agenda-list))) + ;; fill-column-indicator ;; Graphically indicate the fill column (use-package fill-column-indicator