From 3f8ba1b504831759bff400a199130f776ff73e85 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 15 May 2026 02:00:48 -0700 Subject: org-mem: Don't include .org_archive files or harp files I can't think of a reason why I would want to keep around archived tasks. The harp files will use the same title constantly, I don't need that. --- oni/home/services/emacs/org-mem.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/oni/home/services/emacs/org-mem.el b/oni/home/services/emacs/org-mem.el index 55b521f..f5b7f7b 100644 --- a/oni/home/services/emacs/org-mem.el +++ b/oni/home/services/emacs/org-mem.el @@ -2,5 +2,8 @@ :ensure nil :init (setq org-mem-watch-dirs (list (expand-file-name "~/documents/gtd/")) - org-mem-do-sync-with-org-id t) - (org-mem-updater-mode)) + org-mem-do-sync-with-org-id t + org-mem-suffixes '(".org")) + (org-mem-updater-mode) + :config + (add-to-list 'org-mem-exclude "health/harp-")) -- cgit v1.3-2-g0d8e