Emacs: org-superagenda
This commit is contained in:
parent
582fba7ef7
commit
162497485c
1 changed files with 19 additions and 0 deletions
|
@ -503,6 +503,25 @@
|
||||||
|
|
||||||
:hook (org-mode-hook . flyspell-mode))
|
: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
|
;; fill-column-indicator
|
||||||
;; Graphically indicate the fill column
|
;; Graphically indicate the fill column
|
||||||
(use-package fill-column-indicator
|
(use-package fill-column-indicator
|
||||||
|
|
Loading…
Reference in a new issue