add basic org-super-agenda stuff to config ; needs more tests ; this is incomplete / foundational work

This commit is contained in:
KemoNine 2022-09-13 16:19:20 -04:00
parent c73ab93edc
commit 0dc65b257a
2 changed files with 15 additions and 2 deletions

View File

@ -64,6 +64,10 @@
(lambda ()
(local-set-key (kbd "y") 'kmn/org-habit-with-date)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; org-super-agenda
(require 'org-super-agenda)
(setq org-super-agenda-mode 1)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Set some org agendas/dashboards
@ -85,9 +89,18 @@
"~/org/_todo.org"
))
(setq org-agenda-custom-commands
'(
("k" "Testing org-super-agenda"
(
(agenda "" (
(org-agenda-overriding-header "Agenda")
))
(alltodo "" (
(org-agenda-overriding-header "To Do")
))
)
)
("r" "Personal"
(
(agenda "" (

View File

@ -99,9 +99,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; agendas
(setq org-agenda-sticky t)
(load "~/.emacs.d.profiles/org/config-org-agendas.el")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; capture templates
(load "~/.emacs.d.profiles/org/config-org-capture.el")