mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
15 lines
327 B
Lua
15 lines
327 B
Lua
---@brief
|
|
---
|
|
--- 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`.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'steep', 'langserver' },
|
|
filetypes = { 'ruby', 'eruby' },
|
|
root_markers = { 'Steepfile', '.git' },
|
|
}
|