Skip to content

Commit

Permalink
lisp/init-ido.el: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yyr committed Feb 2, 2018
1 parent 2f0502a commit e0edb70
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lisp/init-ido.el
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
;;; init-ido.el
;; Author: Yagnesh Raghava Yakkala. http://yagnesh.org

(el-get 'sync '(flx
ido-completing-read-plus
ido-vertical-mode
smex))

(ido-mode t)
(ido-everywhere t)
(setq ido-enable-flex-matching t)
;; (setq ido-use-filename-at-point 'guess)
(setq ido-auto-merge-work-directories-length 0)

(el-get 'sync 'ido-completing-read-plus)

(require 'ido-completing-read+)
;; (require 'ido-completing-read+)
(ido-ubiquitous-mode 1)
(el-get 'sync '(flx
ido-vertical-mode))

(ido-vertical-mode 1)
(flx-ido-mode 1)
;; disable ido faces to see flx highlights.
Expand Down Expand Up @@ -53,9 +55,7 @@
;; Allow the same buffer to be open in different frames
(setq ido-default-buffer-method 'selected-window)


;;; Smex
(el-get 'sync '(smex))
(global-set-key (kbd "M-x") 'smex)
(global-set-key (kbd "M-X") 'smex-major-mode-commands)

Expand Down

0 comments on commit e0edb70

Please sign in to comment.