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 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 |
