Skip to content

Instantly share code, notes, and snippets.

@ongaeshi
Created March 16, 2011 01:59
Show Gist options
  • Select an option

  • Save ongaeshi/871871 to your computer and use it in GitHub Desktop.

Select an option

Save ongaeshi/871871 to your computer and use it in GitHub Desktop.
recentf設定 自動セーブ付き
;;--------------------------------------------------------------------------
;; recentf-exte.el
;; (install-elisp-from-emacswiki "recentf-ext.el")
;;--------------------------------------------------------------------------
(when (require 'recentf-ext nil t)
(setq recentf-max-saved-items 2000)
(setq recentf-exclude '(".recentf"))
(setq recentf-auto-cleanup 10)
(setq recentf-auto-save-timer (run-with-idle-timer 30 t 'recentf-save-list))
(recentf-mode 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment