mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-11 02:21:14 +10:00
Playing around a bit with org-agenda.
This commit is contained in:
@@ -708,6 +708,34 @@ List of keybindings (SPC h b b)")
|
||||
|
||||
))
|
||||
|
||||
(after! org
|
||||
(setq
|
||||
;; org-fancy-priorities-list '("❗" "[B]" "▰")
|
||||
;; org-fancy-priorities-list '("⬆" "↕" "⬇")
|
||||
org-fancy-priorities-list '("🟥" "🟧" "🟨")
|
||||
org-priority-faces
|
||||
'((?A :foreground "#ff6c6b" :weight bold)
|
||||
(?B :foreground "#98be65" :weight bold)
|
||||
(?C :foreground "#c678dd" :weight bold))
|
||||
))
|
||||
(setq org-agenda-custom-commands
|
||||
'(("v" "A better agenda view"
|
||||
((tags "PRIORITY=\"A\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "High-priority unfinished tasks:")))
|
||||
(tags "PRIORITY=\"B\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "Medium-priority unfinished tasks:")))
|
||||
(tags "PRIORITY=\"C\""
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "Low-priority unfinished tasks:")))
|
||||
(tags "customtag"
|
||||
((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
|
||||
(org-agenda-overriding-header "Tasks with customtag tag:")))
|
||||
|
||||
(agenda "")
|
||||
(alltodo "")))))
|
||||
|
||||
(use-package! org-auto-tangle
|
||||
:defer t
|
||||
:hook (org-mode . org-auto-tangle-mode)
|
||||
|
||||
Reference in New Issue
Block a user