diff options
author | Case Duckworth | 2021-03-11 12:09:16 -0600 |
---|---|---|
committer | Case Duckworth | 2021-03-11 12:09:16 -0600 |
commit | 0ba1a22b647d034deffa8dc2c3ddfc6a38ac8d87 (patch) | |
tree | e18fb2a1d5d9f62fbd448e4d2c74dcefbbbbfa4c | |
parent | Change quote style (diff) | |
download | emacs-0ba1a22b647d034deffa8dc2c3ddfc6a38ac8d87.tar.gz emacs-0ba1a22b647d034deffa8dc2c3ddfc6a38ac8d87.zip |
Lengthen `recentf-auto-cleanup' timeout
-rw-r--r-- | init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init.el b/init.el index 8a17038..e498441 100644 --- a/init.el +++ b/init.el | |||
@@ -128,9 +128,9 @@ | |||
128 | `((recentf-save-file ,(acdw/in-dir "recentf.el")) | 128 | `((recentf-save-file ,(acdw/in-dir "recentf.el")) |
129 | (recentf-max-menu-items 100) | 129 | (recentf-max-menu-items 100) |
130 | (recentf-max-saved-items nil) | 130 | (recentf-max-saved-items nil) |
131 | (recentf-auto-cleanup 10 "Cleanup the recentf list when idle for 10s."))) | 131 | (recentf-auto-cleanup 60 "Cleanup the recentf list when idle for 60s."))) |
132 | (add-to-list 'recentf-exclude acdw/dir) | 132 | (add-to-list 'recentf-exclude acdw/dir) |
133 | (recentf-mode +1)) | 133 | (recentf-mode +1)) |
134 | 134 | ||
135 | ;; Move the custom file | 135 | ;; Move the custom file |
136 | (acdw/set `((custom-file ,(acdw/in-dir "custom.el")))) | 136 | (acdw/set `((custom-file ,(acdw/in-dir "custom.el")))) |