diff --git a/README.md b/README.md index 036724c6..c4d0d985 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,8 @@ $ cask exec ert-runner ## Rust Language Server -The default package is eglot. But you can also use lsp-mode. +The default package is lsp-mode. But you can also use eglot. ``` emacs-lisp -(setq rustic-rls-pkg 'lsp-mode) +(setq rustic-rls-pkg 'eglot) ``` - diff --git a/rustic.el b/rustic.el index d17fae97..dd62fba2 100644 --- a/rustic.el +++ b/rustic.el @@ -49,7 +49,7 @@ ;;;;;;;;;;;;;;;;;; ;; Customization -(defcustom rustic-rls-pkg 'eglot +(defcustom rustic-rls-pkg 'lsp-mode "Emacs package for interaction with rls." :type '(choice (symbol :tag 'eglot "eglot") (symbol :tag 'lsp-mode "lsp-mode"))