docs: Demonstrate disabling `solargraph` when enabling `ruby-lsp` (#12399)

Marshall Bowers created

This PR fixes a small issue in the Ruby docs, where we weren't properly
demonstrating that `solargraph` should be disabled when enabling
`ruby-lsp`.

Release Notes:

- N/A

Change summary

docs/src/languages/ruby.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

docs/src/languages/ruby.md 🔗

@@ -15,7 +15,7 @@ To switch to `ruby-lsp`, add the following to your `settings.json`:
 {
   "languages": {
     "Ruby": {
-      "language_servers": ["ruby-lsp", "..."]
+      "language_servers": ["ruby-lsp", "!solargraph", "..."]
     }
   }
 }