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

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
This commit is contained in:
Marshall Bowers 2024-05-28 18:50:00 -04:00 committed by GitHub
parent bde3056e84
commit cd77e72479
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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", "..."]
}
}
}