1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-10 12:35:47 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/circom-lsp.lua
2024-05-21 12:31:14 +08:00

18 lines
375 B
Lua

local util = require 'lspconfig/util'
return {
default_config = {
cmd = { 'circom-lsp' },
filetypes = { 'circom' },
root_dir = util.find_git_ancestor,
single_file_support = true,
},
docs = {
description = [[
[Circom Language Server](https://github.com/rubydusa/circom-lsp)
`circom-lsp`, the language server for the Circom language.
]],
},
}