nvim-lspconfig/lsp/solargraph.lua

26 lines
495 B
Lua

---@brief
---
--- https://solargraph.org/
---
--- solargraph, a language server for Ruby
---
--- You can install solargraph via gem install.
---
--- ```sh
--- gem install --user-install solargraph
--- ```
---@type vim.lsp.Config
return {
cmd = { 'solargraph', 'stdio' },
---@type lspconfig.settings.solargraph
settings = {
solargraph = {
diagnostics = true,
},
},
init_options = { formatting = true },
filetypes = { 'ruby' },
root_markers = { 'Gemfile', '.git' },
}