From c0501d74a9dcb5ce907bcfbd4302712fe64056c4 Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Tue, 17 Oct 2023 16:10:34 -0400 Subject: Fix previous commit one last time, in the name of all things holy --- init.el | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index 68f882c..f2f8a9c 100644 --- a/init.el +++ b/init.el @@ -1080,18 +1080,19 @@ (defun mm/org-agenda-update-agenda-files () "Update the list of `org-agenda-files'." (interactive) - (org-agenda-files (append '("~/kb/agenda.org" - "~/kb/self.routine.org" - "~/kb/inbox.org" - "~/kb/shop.org") - (file-expand-wildcards "~/kb/*log.org*") - (file-expand-wildcards "~/kb/*agenda.org*")))) + (setq org-agenda-files (append '("~/kb/agenda.org" + "~/kb/self.routine.org" + "~/kb/inbox.org" + "~/kb/shop.org") + (file-expand-wildcards "~/kb/*log.org*") + (file-expand-wildcards "~/kb/*agenda.org*")))) (use-package org :delight :config (mm/org-agenda-update-agenda-files) - (setq org-todo-keywords + (setq org-agenda-start-with-log-mode t + org-todo-keywords '((sequence "TODO(t)" "SOMEDAY(s)" "SOON(o)" "NEXT(n)" "IN-PROGRESS(i)" "WAITING(w)" "HOLD(h)" "REVIEW(r)" "|" "DONE(d)" "CANCELED(c)") -- cgit v1.2.3