diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-10-06 06:15:42 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-10-06 06:15:42 +0000 |
| commit | 2b361e043810d5587d9af0787f8ce40da92ec5e9 (patch) | |
| tree | 7b85f444b7bef205ddc261d260fe7ad326023b61 /doc | |
| parent | feat: add support for uiua (#2853) (diff) | |
| download | nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar.gz nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar.bz2 nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar.lz nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar.xz nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.tar.zst nvim-lspconfig-2b361e043810d5587d9af0787f8ce40da92ec5e9.zip | |
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 37 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 37 |
2 files changed, 74 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 51e8d311..f062ae3b 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -240,6 +240,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [turtle_ls](#turtle_ls) - [typeprof](#typeprof) - [typst_lsp](#typst_lsp) +- [uiua](#uiua) - [unison](#unison) - [unocss](#unocss) - [uvls](#uvls) @@ -10396,6 +10397,42 @@ require'lspconfig'.typst_lsp.setup{} ``` +## uiua + +https://github.com/uiua-lang/uiua/ + +The builtin language server of the Uiua interpreter. + +The Uiua interpreter can be installed with `cargo install uiua` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.uiua.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "uiua", "lsp" } + ``` + - `filetypes` : + ```lua + { "uiua" } + ``` + - `root_dir` : + ```lua + root_pattern( + 'main.ua', + 'fmt.ua', + '.git' + ) + + ``` + + ## unison https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 51e8d311..f062ae3b 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -240,6 +240,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [turtle_ls](#turtle_ls) - [typeprof](#typeprof) - [typst_lsp](#typst_lsp) +- [uiua](#uiua) - [unison](#unison) - [unocss](#unocss) - [uvls](#uvls) @@ -10396,6 +10397,42 @@ require'lspconfig'.typst_lsp.setup{} ``` +## uiua + +https://github.com/uiua-lang/uiua/ + +The builtin language server of the Uiua interpreter. + +The Uiua interpreter can be installed with `cargo install uiua` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.uiua.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "uiua", "lsp" } + ``` + - `filetypes` : + ```lua + { "uiua" } + ``` + - `root_dir` : + ```lua + root_pattern( + 'main.ua', + 'fmt.ua', + '.git' + ) + + ``` + + ## unison https://github.com/unisonweb/unison/blob/trunk/docs/language-server.markdown |
