Files
dotdenote/assets/docker/notes/20240115T100000--org-agenda-gtd__org_gtd.org
andros 9ddd118a49 Redesign UI with flat retro Emacs aesthetic
Replace standard iOS components with a terminal-inspired design:
monospaced typography throughout, flat square borders, Emacs-style
modeline header, filetag keyword format (:kw1:kw2:), and custom
flat form replacing the iOS Form component. Set Emacs as default
theme. Replace non-Emacs demo notes with Emacs ecosystem content
and rename screenshots.
2026-06-17 12:54:41 +02:00

1.1 KiB

Org Agenda and GTD

Agenda views

The agenda aggregates TODO items and scheduled tasks from all org files.

(setq org-agenda-files '("~/notes/" "~/org/inbox.org"))

Capture templates

(setq org-capture-templates
      '(("i" "Inbox" entry
         (file "~/org/inbox.org")
         "* TODO %?\n  %U\n  %a")
        ("j" "Journal" entry
         (file+datetree "~/org/journal.org")
         "* %?\nEntered on %U\n")))

TODO keywords

(setq org-todo-keywords
      '((sequence "TODO(t)" "NEXT(n)" "WAITING(w)" "|"
                  "DONE(d)" "CANCELLED(c)")))

Useful keybindings

Key Action
C-c a a Open agenda week view
C-c a t List all TODOs
C-c c Capture new item
C-c C-s Schedule item
C-c C-d Set deadline
C-c C-t Cycle TODO state