Add consult-eglot

This commit is contained in:
eriedaberrie 2024-11-22 15:32:12 -08:00
parent ecb3b93ed8
commit 30d17a4646

13
init.el
View file

@ -337,12 +337,23 @@
("C-c s" . consult-yasnippet)
("C-c S" . consult-yasnippet-visit-snippet-file))
(use-package consult-eglot
:bind (:map eglot-mode-map ("C-c e /" . consult-eglot-symbols)))
(use-package consult-eglot-embark
:after (embark eglot)
:demand t
:config
(consult-eglot-embark-mode))
(use-package embark
:bind
("C-." . embark-act)
("C-;" . embark-dwim))
(use-package embark-consult)
(use-package embark-consult
:after embark
:hook (embark-collect-mode . consult-preview-at-point-mode))
(use-package orderless
:demand t