11 lines
171 B
Lua
11 lines
171 B
Lua
|
|
---@brief
|
||
|
|
---
|
||
|
|
--- Cobol language support
|
||
|
|
|
||
|
|
---@type vim.lsp.Config
|
||
|
|
return {
|
||
|
|
cmd = { 'cobol-language-support' },
|
||
|
|
filetypes = { 'cobol' },
|
||
|
|
root_markers = { '.git' },
|
||
|
|
}
|