diff options
-rw-r--r-- | lisp/init-buffile.el | 6 | ||||
-rw-r--r-- | lisp/init-ido.el | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/init-buffile.el b/lisp/init-buffile.el index 09da103..18f8273 100644 --- a/lisp/init-buffile.el +++ b/lisp/init-buffile.el @@ -129,4 +129,10 @@ user." ;; Don't show empty filter groups. ibuffer-show-empty-filter-groups nil) +;; Recent files +(setq recentf-save-file "~/.emacs.d/cache/recentf" + recentf-max-saved-items 200 + recentf-max-menu-items 15) +(recentf-mode t) + (provide 'init-buffile) diff --git a/lisp/init-ido.el b/lisp/init-ido.el index 978075c..c0840ab 100644 --- a/lisp/init-ido.el +++ b/lisp/init-ido.el @@ -28,12 +28,6 @@ (flx-ido-mode 1) (ido-ubiquitous-mode 1) -;; Recent files -(setq recentf-save-file "~/.emacs.d/cache/recentf" - recentf-max-saved-items 200 - recentf-max-menu-items 15) -(recentf-mode t) - ;; From prelude (defun km/recentf-ido-find-file () "Find a recent file using ido." |