mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
238 B
Lua
13 lines
238 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/pherrymason/c3-lsp
|
|
---
|
|
--- Language Server for c3.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'c3lsp' },
|
|
root_markers = { 'project.json', 'manifest.json', '.git' },
|
|
filetypes = { 'c3', 'c3i' },
|
|
}
|