diff options
author | Franck Cuny <franck@fcuny.net> | 2022-07-02 20:36:47 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-07-07 17:39:37 -0700 |
commit | cb2f8d328131ec0a734afa75352b215aaced814e (patch) | |
tree | 2e14b0982c90dfac3aa5258f4c8c0cc2763ab223 | |
parent | ref(elfeed): delete commented out code (diff) | |
download | emacs.d-cb2f8d328131ec0a734afa75352b215aaced814e.tar.gz |
ref(elfeed): set the default search filter to 1 month
Only show entries from the last month, I don't need to see things that are older. Change-Id: I387eac7172fd44df28a513c1fbcc361d762c337a Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/611 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
-rw-r--r-- | emacs/custom/my-elfeed.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/custom/my-elfeed.el b/emacs/custom/my-elfeed.el index 3387058..a9ce043 100644 --- a/emacs/custom/my-elfeed.el +++ b/emacs/custom/my-elfeed.el @@ -12,7 +12,7 @@ (add-hook 'after-init-hook 'elfeed-org) -(customize-set-variable 'elfeed-search-filter "@4-months-ago +unread") +(customize-set-variable 'elfeed-search-filter "@1-month-ago +unread") (customize-set-variable 'rmh-elfeed-org-files (list (expand-file-name "etc/elfeed.org" user-emacs-directory))) (defalias 'elfeed-toggle-star |