From 079305a545be1fd89f8310a434fd16161dc08de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr> Date: Mon, 28 Sep 2020 17:32:00 +0200 Subject: [PATCH] Switch to rls --- configuration.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configuration.org b/configuration.org index 64b0420..b331f45 100644 --- a/configuration.org +++ b/configuration.org @@ -755,15 +755,15 @@ Some of my configuration entries where borrowed from other people, see *** Rust - Install =rust-mode= and set the rust language server to - [[https://rust-analyzer.github.io/][rust-analyzer]]. It also sets =rustfmt= to be called to format buffer - when saving. + Install =rust-mode= and set the rust language server to rls. + ([[https://rust-analyzer.github.io/][rust-analyzer]] still crashes too much) It also sets =rustfmt= to be + called to format buffer when saving. #+begin_src emacs-lisp (use-package rust-mode :custom - (lsp-rust-server 'rust-analyzer) - (rust-format-on-save t) + (lsp-rust-server 'rls) +; (rust-format-on-save t) ) #+end_src -- GitLab