A consulting-read interface for eglot.
This package acts as a parallel of consult-lsp for eglot and provides a front-end
interface for the workspace/symbols
LSP procedure call.
- Clone the repo.
- Add the repo path to your emacs
load-path
. - Load it when needed.
This package is on MELPA. You can add this to your package-archives
variable and
then install through M-x package-install
.
(push '("melpa" . "https://melpa.org/packages/") package-archives)
(package-refresh-contents)
(package-install 'consult-eglot)
Adds support for embark exports and action overrides to consult-eglot searches.
(package-install 'consult-eglot-embark)
(with-eval-after-load 'embark
(with-eval-after-load 'consult-eglot
(require 'consult-eglot-embark)
(consult-eglot-embark-mode)))