Created
November 25, 2011 14:30
-
-
Save nilcolor/1393643 to your computer and use it in GitHub Desktop.
ido-find-file
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
;; use ido for minibuffer completion | |
(require 'ido) | |
(ido-mode t) | |
(setq ido-save-directory-list-file "~/.emacs.d/.ido.last") | |
(setq ido-enable-flex-matching t) | |
(setq ido-use-filename-at-point 'guess) | |
(setq ido-show-dot-for-dired t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment