aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions <github-actions@github.com>2022-12-01 10:06:29 +0000
committergithub-actions <github-actions@github.com>2022-12-01 10:06:29 +0000
commit5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb (patch)
treecca369ce758734d1e51f217ae032217c09b11c86
parentfeat: add unison support (#2276) (diff)
downloadnvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar.gz
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar.bz2
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar.lz
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar.xz
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.tar.zst
nvim-lspconfig-5e0bd39476d4e224dfe5ea6a6624ea3bb467a8bb.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md34
-rw-r--r--doc/server_configurations.txt34
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 7da6dc47..63e15e0c 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -182,6 +182,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [tsserver](#tsserver)
- [turtle_ls](#turtle_ls)
- [typeprof](#typeprof)
+- [unison](#unison)
- [vala_ls](#vala_ls)
- [vdmj](#vdmj)
- [verible](#verible)
@@ -7683,6 +7684,39 @@ require'lspconfig'.typeprof.setup{}
```
+## unison
+
+https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown
+
+
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.unison.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "nc", "localhost", "5757" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "unison" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+ - `settings` :
+ ```lua
+ {}
+ ```
+
+
## vala_ls
https://github.com/Prince781/vala-language-server
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 7da6dc47..63e15e0c 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -182,6 +182,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [tsserver](#tsserver)
- [turtle_ls](#turtle_ls)
- [typeprof](#typeprof)
+- [unison](#unison)
- [vala_ls](#vala_ls)
- [vdmj](#vdmj)
- [verible](#verible)
@@ -7683,6 +7684,39 @@ require'lspconfig'.typeprof.setup{}
```
+## unison
+
+https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown
+
+
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.unison.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "nc", "localhost", "5757" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "unison" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+ - `settings` :
+ ```lua
+ {}
+ ```
+
+
## vala_ls
https://github.com/Prince781/vala-language-server