mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
13 lines
221 B
Lua
13 lines
221 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/crystal-lang-tools/scry
|
|
---
|
|
--- Crystal language server.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'scry' },
|
|
filetypes = { 'crystal' },
|
|
root_markers = { 'shard.yml', '.git' },
|
|
}
|