diff options
Diffstat (limited to 'doc/server_configurations.md')
| -rw-r--r-- | doc/server_configurations.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index f91a2c3f..ed023e33 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -38,6 +38,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [buddy_ls](#buddy_ls) - [bufls](#bufls) - [bzl](#bzl) +- [c3_lsp](#c3_lsp) - [cadence](#cadence) - [cairo_ls](#cairo_ls) - [ccls](#ccls) @@ -1717,6 +1718,35 @@ require'lspconfig'.bzl.setup{} ``` +## c3_lsp + +https://github.com/pherrymason/c3-lsp + +Language Server for c3. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.c3_lsp.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "c3lsp" } + ``` + - `filetypes` : + ```lua + { "c3", "c3i" } + ``` + - `root_dir` : + ```lua + root_pattern("project.json", ".git") + ``` + + ## cadence [Cadence Language Server](https://github.com/onflow/cadence-tools/tree/master/languageserver) |
