diff options
| -rw-r--r-- | doc/server_configurations.md | 34 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index d30916c8..51e8d311 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -30,6 +30,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [cadence](#cadence) - [cairo_ls](#cairo_ls) - [ccls](#ccls) +- [circom-lsp](#circom-lsp) - [clangd](#clangd) - [clarity_lsp](#clarity_lsp) - [clojure_lsp](#clojure_lsp) @@ -1503,6 +1504,39 @@ require'lspconfig'.ccls.setup{} ``` +## circom-lsp + +[Circom Language Server](https://github.com/rubydusa/circom-lsp) + +`circom-lsp`, the language server for the Circom language. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.circom-lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "circom-lsp" } + ``` + - `filetypes` : + ```lua + { "circom" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## clangd https://clangd.llvm.org/installation.html diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index d30916c8..51e8d311 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -30,6 +30,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [cadence](#cadence) - [cairo_ls](#cairo_ls) - [ccls](#ccls) +- [circom-lsp](#circom-lsp) - [clangd](#clangd) - [clarity_lsp](#clarity_lsp) - [clojure_lsp](#clojure_lsp) @@ -1503,6 +1504,39 @@ require'lspconfig'.ccls.setup{} ``` +## circom-lsp + +[Circom Language Server](https://github.com/rubydusa/circom-lsp) + +`circom-lsp`, the language server for the Circom language. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.circom-lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "circom-lsp" } + ``` + - `filetypes` : + ```lua + { "circom" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + true + ``` + + ## clangd https://clangd.llvm.org/installation.html |
