diff options
| -rw-r--r-- | ravi-init-ido.el | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/ravi-init-ido.el b/ravi-init-ido.el index 307a35a..1312379 100644 --- a/ravi-init-ido.el +++ b/ravi-init-ido.el @@ -1,9 +1,9 @@ ;;; ravi-init-ido.el --- ido initialization -;; Copyright (C) 2013 +;; Copyright (C) 2013 ;; Author: <ravi@nero.lan> -;; Keywords: +;; Keywords: ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -61,10 +61,10 @@ (use-package flx-ido :init (progn - (use-package flx + (use-package flx :ensure t) - (flx-ido-mode 1) - ) + (flx-ido-mode 1) + ) :ensure t ) (setq ido-use-filename-at-point 'guess) @@ -77,6 +77,12 @@ :ensure t ) + (use-package ido-vertical-mode + :init + (ido-vertical-mode 1) + :ensure t + ) + (defun ido-smart-select-text () "Select the current completed item. Do NOT descend into directories." (interactive) |
