diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-18 06:09:09 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-03-18 06:09:09 +0000 |
| commit | 8c1831817d40925d22cd8a555296c44c02fdaaf5 (patch) | |
| tree | 2287c6c820e8992aa3a1abbd94b84e9fbd8d488b | |
| parent | feat: add tinymist (#3075) (diff) | |
| download | nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar.gz nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar.bz2 nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar.lz nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar.xz nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.tar.zst nvim-lspconfig-8c1831817d40925d22cd8a555296c44c02fdaaf5.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 33 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 33 |
2 files changed, 66 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 281b3434..26e8a2bc 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -268,6 +268,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [theme_check](#theme_check) - [thriftls](#thriftls) - [tilt_ls](#tilt_ls) +- [tinymist](#tinymist) - [tsserver](#tsserver) - [ttags](#ttags) - [turtle_ls](#turtle_ls) @@ -11770,6 +11771,38 @@ require'lspconfig'.tilt_ls.setup{} ``` +## tinymist + +https://github.com/Myriad-Dreamin/tinymist +An integrated language service for Typst [taɪpst]. You can also call it "微霭" [wēi ǎi] in Chinese. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tinymist.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tinymist" } + ``` + - `filetypes` : + ```lua + { "typst" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + false + ``` + + ## tsserver https://github.com/typescript-language-server/typescript-language-server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 281b3434..26e8a2bc 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -268,6 +268,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [theme_check](#theme_check) - [thriftls](#thriftls) - [tilt_ls](#tilt_ls) +- [tinymist](#tinymist) - [tsserver](#tsserver) - [ttags](#ttags) - [turtle_ls](#turtle_ls) @@ -11770,6 +11771,38 @@ require'lspconfig'.tilt_ls.setup{} ``` +## tinymist + +https://github.com/Myriad-Dreamin/tinymist +An integrated language service for Typst [taɪpst]. You can also call it "微霭" [wēi ǎi] in Chinese. + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.tinymist.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "tinymist" } + ``` + - `filetypes` : + ```lua + { "typst" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `single_file_support` : + ```lua + false + ``` + + ## tsserver https://github.com/typescript-language-server/typescript-language-server |
