[Emacs] Update list of ignored files in recentf

This commit is contained in:
Lucien Cartier-Tilet 2022-03-06 22:16:15 +01:00
parent 1f11d7685e
commit d5cf97d888
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 8 additions and 4 deletions

View File

@ -2640,11 +2640,15 @@ excluded files.
#+begin_src emacs-lisp
(use-package recentf
:straight (:build t :type built-in)
:custom ((recentf-max-saved-items 200))
:custom ((recentf-max-saved-items 2000))
:config
(add-to-list 'recentf-exclude (rx (* print)
(or "elfeed-db" "eln-cache")
(* print))))
(add-to-list 'recentf-exclude (rx (or (seq (* print)
(or "elfeed-db" "eln-cache")
(* print))
(seq (* print)
"conlanging/content"
(* print)
(or "html" "pdf" "tex"))))))
#+end_src
*** Screenshot