diff options
author | Amin Bandali <bandali@gnu.org> | 2019-06-06 00:52:52 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-06-06 00:52:52 -0400 |
commit | fc995e3d5a91d3d1938563ef794369974b8e5fb5 (patch) | |
tree | 1f40d70f7ad16b54360a39f60a55b6c37755ca36 | |
parent | 29e42dc1fd04beeec0ffda85c2b534c94168c0df (diff) | |
download | configs-fc995e3d5a91d3d1938563ef794369974b8e5fb5.tar.gz configs-fc995e3d5a91d3d1938563ef794369974b8e5fb5.tar.xz configs-fc995e3d5a91d3d1938563ef794369974b8e5fb5.zip |
emacs: bump recentf-max-saved-items from 40 to 2000
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index bcb3a3b..b05904f 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -658,7 +658,7 @@ For disabling the behaviour for certain buffers and/or modes." :defer 0.2 :config (add-to-list 'recentf-exclude "^/\\(?:ssh\\|su\\|sudo\\)?:") - (setq recentf-max-saved-items 40)) + (setq recentf-max-saved-items 2000)) ;; smart M-x enhancement (needed by counsel for history) (use-package smex) |