diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-10-17 15:43:05 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-10-17 15:43:05 -0400 |
commit | c8c5934f59314ef39fab8a0758da1e2be4b116d2 (patch) | |
tree | 574f4b2c191af1ba2772a66940bc9ad6c10d1a67 | |
parent | Fix previous commit (diff) | |
download | mmosmacs-c8c5934f59314ef39fab8a0758da1e2be4b116d2.tar.gz mmosmacs-c8c5934f59314ef39fab8a0758da1e2be4b116d2.tar.bz2 mmosmacs-c8c5934f59314ef39fab8a0758da1e2be4b116d2.zip |
Fix previous commit again, maybe I'll quit messing around now
-rw-r--r-- | init.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1080,12 +1080,12 @@ | |||
1080 | (defun mm/org-agenda-update-agenda-files () | 1080 | (defun mm/org-agenda-update-agenda-files () |
1081 | "Update the list of `org-agenda-files'." | 1081 | "Update the list of `org-agenda-files'." |
1082 | (interactive) | 1082 | (interactive) |
1083 | org-agenda-files (append '("~/kb/agenda.org" | 1083 | (org-agenda-files (append '("~/kb/agenda.org" |
1084 | "~/kb/self.routine.org" | 1084 | "~/kb/self.routine.org" |
1085 | "~/kb/inbox.org" | 1085 | "~/kb/inbox.org" |
1086 | "~/kb/shop.org") | 1086 | "~/kb/shop.org") |
1087 | (file-expand-wildcards "~/kb/*log.org*") | 1087 | (file-expand-wildcards "~/kb/*log.org*") |
1088 | (file-expand-wildcards "~/kb/*agenda.org*"))) | 1088 | (file-expand-wildcards "~/kb/*agenda.org*")))) |
1089 | 1089 | ||
1090 | (use-package org | 1090 | (use-package org |
1091 | :delight | 1091 | :delight |