mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
16 lines
368 B
Lua
16 lines
368 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/ecsact-dev/ecsact_lsp_server
|
|
---
|
|
--- Language server for Ecsact.
|
|
---
|
|
--- The default cmd assumes `ecsact_lsp_server` is in your PATH. Typically from the
|
|
--- Ecsact SDK: https://ecsact.dev/start
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'ecsact_lsp_server', '--stdio' },
|
|
filetypes = { 'ecsact' },
|
|
root_markers = { '.git' },
|
|
}
|