From 4f61b0e3ce1a58861660d148548be952fe0f7b56 Mon Sep 17 00:00:00 2001 From: Tobias Ostner Date: Sat, 10 Aug 2024 16:06:57 +0200 Subject: [PATCH] Add agenda views for work and personal todos --- nix/config/emacs/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/config/emacs/init.el b/nix/config/emacs/init.el index e6f7f5f..406fc1e 100644 --- a/nix/config/emacs/init.el +++ b/nix/config/emacs/init.el @@ -480,12 +480,16 @@ org-startup-with-inline-images t org-image-actual-width '(460) org-agenda-files '("~/Logseq/Me/journals/" "~/Logseq/Me/pages") + org-agenda-custom-commands + '(("p" "Personal Todos" tags-todo "-@work") + ("w" "Work Todos" tags-todo "+@work")) org-capture-templates '(("i" "Inbox" entry (file "~/Logseq/Me/pages/Inbox.org") "* %?\n")) org-tag-alist '(("@work") ("@home") ("project") ("bitcoin") ("ai-ml")) + org-todo-keywords '((sequence "TODO" "DOING" "WAITING" "|" "DONE")) org-confirm-babel-evaluate nil