;; http://www.emacswiki.org/cgi-bin/wiki/InteractivelyDoThings (require 'ido) (ido-mode t) (global-set-key [(control tab)] 'ido-switch-buffer) (custom-set-faces '(ido-subdir ((((min-colors 88) (class color)) (:weight bold)))) '(ido-only-match ((((class color)) (:foreground "Green")))) '(ido-first-match ((t (:background "#7fff31" :foreground "black" :weight bold))))) (custom-set-variables '(ido-work-directory-list-ignore-regexps (quote (".*"))) '(ido-max-work-directory-list 500) '(ido-max-directory-size 90000) '(ido-everywhere t) '(ido-enable-flex-matching t))