mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
404 B
Lua
13 lines
404 B
Lua
---@brief
|
|
---
|
|
--- `pli_language_server` is a language server for the PL/I language used on IBM SystemZ mainframes.
|
|
---
|
|
--- To learn how to configure the PL/I language server, see the [PL/I Language Support documentation](https://github.com/zowe/zowe-pli-language-support).
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'pli_language_server' },
|
|
filetypes = { 'pli' },
|
|
root_markers = { '.pliplugin' },
|
|
}
|