[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 #+begin_src emacs-lisp
(use-package recentf (use-package recentf
:straight (:build t :type built-in) :straight (:build t :type built-in)
:custom ((recentf-max-saved-items 200)) :custom ((recentf-max-saved-items 2000))
:config :config
(add-to-list 'recentf-exclude (rx (* print) (add-to-list 'recentf-exclude (rx (or (seq (* print)
(or "elfeed-db" "eln-cache") (or "elfeed-db" "eln-cache")
(* print)))) (* print))
(seq (* print)
"conlanging/content"
(* print)
(or "html" "pdf" "tex"))))))
#+end_src #+end_src
*** Screenshot *** Screenshot