diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-08-26 00:20:22 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-08-26 00:20:22 +0000 |
| commit | a27356f1ef9c11e1f459cc96a3fcac5c265e72d6 (patch) | |
| tree | c00986791bf5a2176c91f35ad71388527fb48c3d | |
| parent | feat: add mdx-analyzer support (#2784) (diff) | |
| download | nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar.gz nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar.bz2 nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar.lz nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar.xz nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.tar.zst nvim-lspconfig-a27356f1ef9c11e1f459cc96a3fcac5c265e72d6.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 38 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 38 |
2 files changed, 76 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 2da48a16..9844eac8 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -116,6 +116,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [m68k](#m68k) - [marksman](#marksman) - [matlab_ls](#matlab_ls) +- [mdx_analyzer](#mdx_analyzer) - [metals](#metals) - [millet](#millet) - [mint](#mint) @@ -5216,6 +5217,43 @@ require'lspconfig'.matlab_ls.setup{} ``` +## mdx_analyzer + +https://github.com/mdx-js/mdx-analyzer + +`mdx-analyzer`, a language server for MDX + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.mdx_analyzer.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "mdx-language-server", "--stdio" } + ``` + - `filetypes` : + ```lua + { "markdown.mdx" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + - `single_file_support` : + ```lua + true + ``` + + ## metals https://scalameta.org/metals/ diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 2da48a16..9844eac8 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -116,6 +116,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [m68k](#m68k) - [marksman](#marksman) - [matlab_ls](#matlab_ls) +- [mdx_analyzer](#mdx_analyzer) - [metals](#metals) - [millet](#millet) - [mint](#mint) @@ -5216,6 +5217,43 @@ require'lspconfig'.matlab_ls.setup{} ``` +## mdx_analyzer + +https://github.com/mdx-js/mdx-analyzer + +`mdx-analyzer`, a language server for MDX + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.mdx_analyzer.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "mdx-language-server", "--stdio" } + ``` + - `filetypes` : + ```lua + { "markdown.mdx" } + ``` + - `root_dir` : + ```lua + see source file + ``` + - `settings` : + ```lua + {} + ``` + - `single_file_support` : + ```lua + true + ``` + + ## metals https://scalameta.org/metals/ |
