aboutsummaryrefslogtreecommitdiffstats
path: root/doc/server_configurations.md
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-09-10 05:34:58 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-09-10 05:34:58 +0000
commit5ac3e198f683d6702b6b7f9053b720e10c35116b (patch)
tree38681269853be867c4313851ab2be3222d39f7c0 /doc/server_configurations.md
parentfeat(kcl): add kcl-language-server support (#3294) (diff)
downloadnvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar.gz
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar.bz2
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar.lz
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar.xz
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.tar.zst
nvim-lspconfig-5ac3e198f683d6702b6b7f9053b720e10c35116b.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc/server_configurations.md')
-rw-r--r--doc/server_configurations.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index ec4cec60..6a8c6672 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -145,6 +145,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [jsonls](#jsonls)
- [jsonnet_ls](#jsonnet_ls)
- [julials](#julials)
+- [kcl](#kcl)
- [koka](#koka)
- [kotlin_language_server](#kotlin_language_server)
- [lean3ls](#lean3ls)
@@ -6257,6 +6258,36 @@ require'lspconfig'.julials.setup{}
```
+## kcl
+
+https://github.com/kcl-lang/kcl.nvim
+
+Language server for the KCL configuration and policy language.
+
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.kcl.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "kcl-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "kcl" }
+ ```
+ - `root_dir` :
+ ```lua
+ root_pattern(".git")
+ ```
+
+
## koka
https://koka-lang.github.io/koka/doc/index.html