Skip to content

Instantly share code, notes, and snippets.

@ericmjonas
Created July 20, 2009 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericmjonas/150296 to your computer and use it in GitHub Desktop.
Save ericmjonas/150296 to your computer and use it in GitHub Desktop.
(require 'ido) ; ido is part of emacs
(ido-mode t) ; for both buffers and files
(setq
ido-ignore-buffers ; ignore these guys
'("\\` " "^\*Mess" "^\*Back" ".*Completion" "^\*Ido")
ido-work-directory-list '("~/" "~/Desktop" "~/Documents")
ido-case-fold t ; be case-insensitive
ido-use-filename-at-point nil ; don't use filename at point (annoying)
ido-use-url-at-point nil ; don't use url at point (annoying)
ido-enable-flex-matching t ; be flexible
ido-max-prospects 6 ; don't spam my minibuffer
ido-confirm-unique-completion t) ; wait for RET, even with unique completion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment