mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-27 00:11:06 +01:00
13 lines
269 B
Lua
13 lines
269 B
Lua
---@brief
|
|
---
|
|
--- [Circom Language Server](https://github.com/rubydusa/circom-lsp)
|
|
---
|
|
--- `circom-lsp`, the language server for the Circom language.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'circom-lsp' },
|
|
filetypes = { 'circom' },
|
|
root_markers = { '.git' },
|
|
}
|