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