diff --git a/configuration.org b/configuration.org
index 64b04206271fc6b35fe2aa386636ea9247ba3000..b331f4536e69c33d1ffdc7999783b3424e678f66 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