(Emacs)~disable ido and use ivy
Trying out ivy again, thinking it might be the one to use.
This commit is contained in:
@@ -449,6 +449,9 @@ looking for a command.
|
|||||||
(amx-mode))
|
(amx-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
*** Ido
|
*** Ido
|
||||||
|
:PROPERTIES:
|
||||||
|
:header-args:emacs-lisp: :tangle no
|
||||||
|
:END:
|
||||||
Ido is a very old completion package that still works great to this
|
Ido is a very old completion package that still works great to this
|
||||||
day. Though it is limited in its scope (and may thus be called a
|
day. Though it is limited in its scope (and may thus be called a
|
||||||
completion add-on rather than a full on framework), it is still a very
|
completion add-on rather than a full on framework), it is still a very
|
||||||
@@ -529,7 +532,10 @@ helpful counterparts.
|
|||||||
[remap describe-bindings] #'counsel-descbinds
|
[remap describe-bindings] #'counsel-descbinds
|
||||||
[remap load-theme] #'counsel-load-theme)
|
[remap load-theme] #'counsel-load-theme)
|
||||||
:config
|
:config
|
||||||
(setq ivy-initial-inputs-alist nil))
|
(setq ivy-initial-inputs-alist nil
|
||||||
|
counsel-describe-function-function #'helpful-callable
|
||||||
|
counsel-describe-variable-function #'helpful-variable)
|
||||||
|
(counsel-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
**** Ivy Core
|
**** Ivy Core
|
||||||
Setup for ivy, in preparation for counsel. Turn on ivy-mode just
|
Setup for ivy, in preparation for counsel. Turn on ivy-mode just
|
||||||
@@ -539,7 +545,7 @@ Setup vim-like bindings for the minibuffer ("C-(j|k)" for down|up the
|
|||||||
selection list).
|
selection list).
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package ivy
|
(use-package ivy
|
||||||
:defer 10
|
:hook (after-init-hook . ivy-mode)
|
||||||
:general
|
:general
|
||||||
(general-def
|
(general-def
|
||||||
:keymaps 'ivy-minibuffer-map
|
:keymaps 'ivy-minibuffer-map
|
||||||
|
|||||||
Reference in New Issue
Block a user