completion
This commit is contained in:
parent
65208c1fcd
commit
fc62e005ce
|
@ -269,6 +269,13 @@ We need to configure the evil collection binds for consult
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(with-eval-after-load 'consult (evil-collection-consult-setup))
|
(with-eval-after-load 'consult (evil-collection-consult-setup))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
And bind up the search
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(after! evil
|
||||||
|
(map! :n "C-s" #'consult-line
|
||||||
|
:n "SPC s :" #'consult-line-multi))
|
||||||
|
#+end_src
|
||||||
*** Deadgrep
|
*** Deadgrep
|
||||||
Ripgrep, but from within emacs
|
Ripgrep, but from within emacs
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
2
init.el
2
init.el
|
@ -15,7 +15,7 @@
|
||||||
;; directory (for easy access to its source code).
|
;; directory (for easy access to its source code).
|
||||||
|
|
||||||
(doom! :completion
|
(doom! :completion
|
||||||
(company +childframe +tng) ; the ultimate code completion backend
|
(company +childframe) ; the ultimate code completion backend
|
||||||
(vertico +childframe +icons)
|
(vertico +childframe +icons)
|
||||||
|
|
||||||
:ui
|
:ui
|
||||||
|
|
Loading…
Reference in New Issue