diff options
Diffstat (limited to 'lisp/ravi-init-ido.el')
| -rw-r--r-- | lisp/ravi-init-ido.el | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/lisp/ravi-init-ido.el b/lisp/ravi-init-ido.el index 0997bd4..61f9e50 100644 --- a/lisp/ravi-init-ido.el +++ b/lisp/ravi-init-ido.el @@ -32,8 +32,7 @@ (progn (use-package ibuffer-vc - :commands ibuffer-vc-set-filter-groups-by-vc-root - :ensure t) + :commands ibuffer-vc-set-filter-groups-by-vc-root) ;; Switching to ibuffer puts the cursor on the most recent past buffer (defadvice ibuffer (around ibuffer-point-to-most-recent-but-one activate) () @@ -70,7 +69,7 @@ ;; :config ;; (progn ;; (bind-key "M-<f1>" 'ido-switch-buffer)) - :ensure t) + ) ;;;_ , ido @@ -88,34 +87,25 @@ (progn (use-package ido-hacks :config - (ido-hacks-mode 1) - :ensure t - ) + (ido-hacks-mode 1)) (use-package flx-ido :config (progn - (use-package flx - :ensure t) + (use-package flx) (flx-ido-mode 1) - ) - :ensure t - ) + )) (setq ido-use-filename-at-point 'guess) (setq ido-use-virtual-buffers t) (setq ido-create-new-buffer 'always) (use-package ido-ubiquitous :config - (ido-ubiquitous-mode t) - :ensure t - ) + (ido-ubiquitous-mode t)) (use-package ido-vertical-mode :config - (ido-vertical-mode 1) - :ensure t - ) + (ido-vertical-mode 1)) (defun ido-smart-select-text () "Select the current completed item. Do NOT descend into directories." @@ -168,9 +158,7 @@ (use-package smex :init (global-set-key [remap execute-extended-command] 'smex) - :if (not ravi/use-helm-instead-of-ido) - :ensure t - ) + :if (not ravi/use-helm-instead-of-ido)) (provide 'ravi-init-ido) ;;; ravi-init-ido.el ends here |
