diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2018-05-29 11:58:11 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2018-05-29 11:58:11 (GMT) |
| commit | 4fe8a14a3c2e497ec2d0111475cce433fe6dad8f (patch) | |
| tree | 6644d168310f296f0b04c437c19140239d119eef /lisp/ravi-init-ido.el | |
| parent | c7b0ca5c28d79ed4fc38b7f6c578e97bc6c7efc4 (diff) | |
| download | dotemacs-4fe8a14a3c2e497ec2d0111475cce433fe6dad8f.zip dotemacs-4fe8a14a3c2e497ec2d0111475cce433fe6dad8f.tar.gz dotemacs-4fe8a14a3c2e497ec2d0111475cce433fe6dad8f.tar.bz2 | |
Automatic use of :ensure
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 |
