Created
March 16, 2011 01:59
-
-
Save ongaeshi/871871 to your computer and use it in GitHub Desktop.
recentf設定 自動セーブ付き
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;-------------------------------------------------------------------------- | |
| ;; 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