Commit b4975098e2a6
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -413,6 +413,18 @@
kept-old-versions 2
version-control t)
#+end_src
+*** Recentf
+
+#+begin_src emacs-lisp
+ (use-package recentf
+ :config
+ (setq recentf-max-saved-items 500
+ recentf-max-menu-items 15
+ ;; disable recentf-cleanup on Emacs start, because it can cause
+ ;; problems with remote files
+ recentf-auto-cleanup) 'never
+ (recentf-mode +1))
+#+end_src
*** Saving on focus out
IntelliJ does that and I find it cool, so let's do that in Emacs