diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-21 00:45:52 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-21 00:45:52 -0400 |
commit | c4a12b2876182bce50c76fb3c232de9071996b0b (patch) | |
tree | 050ab5f2011bf5f5ec4a886a11fc46b43d258732 | |
parent | 38c6d00e6398866d1cfa241d8d813f7412e849b3 (diff) | |
download | emacs.d-c4a12b2876182bce50c76fb3c232de9071996b0b.tar.gz |
Relocate recent files settings
-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." |