Switch out completion frameworks
This commit is contained in:
parent
8cdddf3862
commit
65208c1fcd
15
config.org
15
config.org
|
@ -264,6 +264,11 @@ Gobble up whitespace in a smarter way
|
||||||
)
|
)
|
||||||
#+end_src
|
#+end_src
|
||||||
** Search
|
** Search
|
||||||
|
*** Consult
|
||||||
|
We need to configure the evil collection binds for consult
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(with-eval-after-load 'consult (evil-collection-consult-setup))
|
||||||
|
#+end_src
|
||||||
*** Deadgrep
|
*** Deadgrep
|
||||||
Ripgrep, but from within emacs
|
Ripgrep, but from within emacs
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -283,6 +288,16 @@ Add in all of our dictionaries
|
||||||
;; (bind-key "C-." #'+spell/correct)
|
;; (bind-key "C-." #'+spell/correct)
|
||||||
)
|
)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Auto completion
|
||||||
|
Plug in hotfuzz
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(after! vertico
|
||||||
|
(require 'hotfuzz)
|
||||||
|
(setq completion-styles '(hotfuzz)))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
#+RESULTS:
|
||||||
|
|
||||||
* Org Mode
|
* Org Mode
|
||||||
Improvements to the best mode in emacs
|
Improvements to the best mode in emacs
|
||||||
|
|
||||||
|
|
2
init.el
2
init.el
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
(doom! :completion
|
(doom! :completion
|
||||||
(company +childframe +tng) ; the ultimate code completion backend
|
(company +childframe +tng) ; the ultimate code completion backend
|
||||||
(ivy +fuzzy +precient +childframe +icons)
|
(vertico +childframe +icons)
|
||||||
|
|
||||||
:ui
|
:ui
|
||||||
doom ; what makes DOOM look the way it does
|
doom ; what makes DOOM look the way it does
|
||||||
|
|
|
@ -75,3 +75,4 @@
|
||||||
(package! per-buffer-theme)
|
(package! per-buffer-theme)
|
||||||
(package! org-chef)
|
(package! org-chef)
|
||||||
(package! keychain-environment)
|
(package! keychain-environment)
|
||||||
|
(package! hotfuzz)
|
||||||
|
|
Loading…
Reference in New Issue