mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
278 B
Lua
13 lines
278 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/ruby/typeprof
|
|
---
|
|
--- `typeprof` is the built-in analysis and LSP tool for Ruby 3.1+.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'typeprof', '--lsp', '--stdio' },
|
|
filetypes = { 'ruby', 'eruby' },
|
|
root_markers = { 'Gemfile', '.git' },
|
|
}
|