.emacs-my
changeset 410 9bc8199793b1
parent 407 d589dce9a738
parent 409 b8fe73dd1ab5
child 412 cfc3164f3259
--- a/.emacs-my	Wed Jun 16 00:04:06 2010 +0300
+++ b/.emacs-my	Sun Jun 20 22:16:14 2010 +0300
@@ -177,6 +177,9 @@
 ;; Try to speed things up, especially in VM.
 (setq gc-cons-threshold 2000000)
 
+;; Default 'command-history' length too short (in Emacs 23.2 is 30).
+(setq history-length 200)
+
 ;; Don't beep in my headphones!
 (setq ring-bell-function '(lambda () "Empty ring-bell-function." nil))
 (setq visible-bell t) ; With default ring-bell-function in text terminal
@@ -470,7 +473,7 @@
 ;; Its take time and ask passwords!
 (setq recentf-auto-cleanup 'never)
 (recentf-mode t)
-(setq recentf-max-saved-items 200)
+(setq recentf-max-saved-items 1000)
 (global-set-key (kbd "\e\eq")  'recentf-open-files)
 
 ;; ----------------------------------------------------------------------