Getting the #RubyLSP #VSCode extension working in a #DevContainer with the #rv #Ruby version manager is a little fiddly.
The least amount of configuration that I can figure out is a configuration like this:
```
"customizations": {
"vscode": {
"extensions": [
"Shopify.ruby-lsp"
],
"settings": {
"rubyLsp.customRubyCommand": "PATH=$(rv ruby dir)/ruby-3.3.10/bin:${PATH}",
"rubyLsp.rubyVersionManager.identifier": "custom"
}
}
}
```
https://shopify.github.io/ruby-lsp/version-managers.html#custom-activation



