9ddd118a49
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.
1.1 KiB
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 |