blob: 7fa3441102872c3365b16f41c49d7142cec3323c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---@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' },
}
|