aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/solargraph.lua
blob: 42bfbd9b95230e1f7df5ab1fef2c87cf171854bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---@brief
---
-- https://solargraph.org/
--
-- solargraph, a language server for Ruby
--
-- You can install solargraph via gem install.
--
-- ```sh
-- gem install --user-install solargraph
-- ```
return {
  cmd = { 'solargraph', 'stdio' },
  settings = {
    solargraph = {
      diagnostics = true,
    },
  },
  init_options = { formatting = true },
  filetypes = { 'ruby' },
  root_markers = { 'Gemfile', '.git' },
}