Contents

Getting Started With Org Super Agenda on Spacemacs

Contents

Demo

I recently got setup with org-super-agenda. It’s a great tool that makes custom agenda views way easier to manage.

I use a “Next View” for quickly finding a task to work on. This is what it looks like:

Super Next View

Super Next View

I use a “Todo View” for finding tasks to mark as NEXT. This is what it looks like:

Super Todo View

Super Todo View

Setup

Setting up with Spacemacs was quick. Add org-super-agenda to dotspacemacs-additional-packages

1
2
3
4
dotspacemacs-additional-packages '(
                                   org-super-agenda
                                   ...
                                   )

Next add your custom agenda commands to dotspacemacs/user-config:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(setq org-agenda-custom-commands
      '(("n" "Next View"
         ((agenda "" ((org-agenda-span 'day)
                      (org-super-agenda-groups
                       '((:name "Today"
                                :time-grid t
                                :todo "TODAY"
                                :scheduled today
                                :order 0)
                         (:habit t)
                         (:name "Due Today"
                                :deadline today
                                :order 2)
                         (:name "Due Soon"
                                :deadline future
                                :order 8)
                         (:name "Overdue"
                                :deadline past
                                :order 7)
                         ))))
          (todo "" ((org-agenda-overriding-header "")
                    (org-super-agenda-groups
                     '((:name "Inbox"
                              :file-path "inbox"
                              :order 0
                              )
                       (:discard (:todo "TODO"))
                       (:auto-category t
                                       :order 9)
                       ))))))
        ("t" "Todo View"
         (
          (todo "" ((org-agenda-overriding-header "")
                    (org-super-agenda-groups
                     '((:name "Inbox"
                              :file-path "inbox"
                              :order 0
                              )
                       (:auto-category t
                                       :order 9)
                       ))))))
        ))

(org-super-agenda-mode)

Now you’re good to go!

Stay In Touch