mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 15:50:03 +08:00
33 lines
694 B
Lua
33 lines
694 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = { 'ruby-lsp' },
|
||
|
filetypes = { 'ruby' },
|
||
|
root_dir = util.root_pattern('Gemfile', '.git'),
|
||
|
init_options = {
|
||
|
formatter = 'auto',
|
||
|
},
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://shopify.github.io/ruby-lsp/
|
||
|
|
||
|
This gem is an implementation of the language server protocol specification for
|
||
|
Ruby, used to improve editor features.
|
||
|
|
||
|
Install the gem. There's no need to require it, since the server is used as a
|
||
|
standalone executable.
|
||
|
|
||
|
```sh
|
||
|
group :development do
|
||
|
gem "ruby-lsp", require: false
|
||
|
end
|
||
|
```
|
||
|
]],
|
||
|
default_config = {
|
||
|
root_dir = [[root_pattern("Gemfile", ".git")]],
|
||
|
},
|
||
|
},
|
||
|
}
|