Skip to content

Commit

Permalink
Use flx-ido replacement flex matching for ido
Browse files Browse the repository at this point in the history
  • Loading branch information
rdj committed Apr 24, 2014
1 parent 5c9e1a7 commit b149182
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions rdj/rdj-misc.el
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@
(add-to-list 'hippie-expand-try-functions-list 'try-complete-file-name-partially t)

;; use ido
(setq ido-enable-flex-matching 't
ido-save-directory-list-file (concat user-emacs-directory ".ido.last"))
(setq ido-save-directory-list-file (concat user-emacs-directory ".ido.last")
ido-use-faces nil ;; disable ido faces to see flx highlights
)
(ido-mode 1)
(ido-everywhere 1)
(flx-ido-mode 1) ;; replacement for ido-enable-flex-matching
(setq ido-use-faces nil)

;; automatically reload files changed in background
(global-auto-revert-mode 1)
Expand Down
1 change: 1 addition & 0 deletions rdj/rdj-package.el
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
(defvar rdj-packages
'(
coffee-mode
flx-ido
helm
helm-projectile
magit
Expand Down

0 comments on commit b149182

Please sign in to comment.