How to install Solargraph with Sublime Text LSP
January 10, 2019 —
Cédric Dekimpe
Solargraph is a Ruby Language Server. It’s meant to add code completion and inline documentation onto IDEs.
We have to install the gem first
gem install solargraph
Within Sublime Text Control Panel (CTRL+Shift+P
) :
- Find Package Control: Install Package
- Then LSP
- Hit
enter
By default, the ST plugin will look for rvm
, not rbenv
. We have to force the settings Preferences > Package Settings > LSP > Settings
, and paste this :
https://gist.github.com/cedricdekimpe/099bccef4472912aba61545d0c31d5ec
Note : you need to adjust the value of the path on line 8. You can find the exact installation path of solargraph
on your system with the following command
which solargraph
Finally we can enable the server via the Sublime Text Control Panel (CTRL+Shift+P
)