Skip to content

Commit

Permalink
change default rls package to lsp-mode
Browse files Browse the repository at this point in the history
I think most people still use lsp-mode + flycheck
  • Loading branch information
brotzeit committed Jul 24, 2018
1 parent 4f609e3 commit e92328b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

2 changes: 1 addition & 1 deletion rustic.el
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit e92328b

Please sign in to comment.