diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:06:10 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:06:10 +0100 |
commit | 200376d3afa8f014ccface4f017009e89ecd6f10 (patch) | |
tree | 3576ec4b3a78024ab8c07241295a72dd0668ff53 /.emacs.d/lisp/init-editor.el | |
parent | 9c579e4609282b1290a67e3afacb70dfeffbfb1e (diff) | |
download | dotfiles-200376d3afa8f014ccface4f017009e89ecd6f10.tar.gz |
Tweak recentf settings
Diffstat (limited to '.emacs.d/lisp/init-editor.el')
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index 882a781..3e48fc8 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -126,9 +126,9 @@ and file 'filename' will be opened and cursor set on line 'linenumber'" (recentf-mode +1) :custom (recentf-save-file (expand-file-name "recentf" save-dir)) - (recentf-max-saved-items 1000) - (recentf-max-menu-items 30) - (recentf-auto-cleanup (* 5 60))) + (recentf-max-saved-items 300) + (recentf-max-menu-items 20) + (recentf-auto-cleanup (* 60 60))) (use-package flycheck :config |