1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 07:00:05 +08:00
SpaceVim/bundle/nvim-lspconfig-0.1.4/lua/lspconfig/server_configurations/steep.lua
2023-03-29 11:59:27 +08:00

22 lines
479 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'steep', 'langserver' },
filetypes = { 'ruby', 'eruby' },
root_dir = util.root_pattern('Steepfile', '.git'),
},
docs = {
description = [[
https://github.com/soutaro/steep
`steep` is a static type checker for Ruby.
You need `Steepfile` to make it work. Generate it with `steep init`.
]],
default_config = {
root_dir = [[root_pattern("Steepfile", ".git")]],
},
},
}