Emacs: org-superagenda

This commit is contained in:
Marcel Kapfer 2018-07-09 15:20:59 +02:00
parent 582fba7ef7
commit 162497485c
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 19 additions and 0 deletions

View File

@ -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