From 1ad69b91b9bbf22d3f5a5a35016729cf882f935c Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Tue, 15 Nov 2022 19:55:11 -0500 Subject: [PATCH] Exclude encrypted org-files from agenda --- config.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.org b/config.org index d3b1cda..b068085 100644 --- a/config.org +++ b/config.org @@ -311,6 +311,8 @@ Setup org-superstar-mode, to make lists and bullets pretty (and ;; Exclude the syncthing folder (not (string-match-p ".*stfolder$" item)) + ;; Exclude gpg encrypted org files + (not (string-match-p ".*\\.gpg" item)) ;; Exclude the elfeed data folder (not (string-match-p (concat "^" (regexp-quote org-directory) "elfeed/.*") item)) ;; Only accept org files