dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 48f165ce77dfebbec45d64ee5d2030abf6f2cfbc
parent 6367ff857252633bf9dc7c1e4b90550491a4bacf
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Fri, 22 Jul 2022 12:44:11 +0200

emacs: org mode agenda kanban view

Except it's vertical. Haven't figured out if there's a way to make it
horizontal without fucking around with new buffers etc.

Diffstat:
Memacs/config.org | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -660,6 +660,11 @@ The first two strings are what shows up in the agenda dispatcher (the key to pre (org-habit-show-all-today t))) (todo "WAITING" ((org-agenda-overriding-header "Waiting:"))))) + ("k" "Kanban view" + ((todo "DONE" ((org-agenda-overriding-header "Done:") (org-agenda-sorting-strategy '(deadline-up priority-down alpha-up)))) + (todo "STARTED" ((org-agenda-overriding-header "In progress:") (org-agenda-sorting-strategy '(deadline-up priority-down alpha-up)))) + (todo "NEXT" ((org-agenda-overriding-header "To do:") (org-agenda-sorting-strategy '(deadline-up priority-down alpha-up)))))) + ("p" "Projects" ((tags "PROJECT" ((org-agenda-overriding-header "Projects:") (org-agenda-prefix-format '((tags . " %i %-22(let ((deadline (org-entry-get nil \"DEADLINE\"))) (if deadline deadline \"\"))")))