diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-22 07:25:48 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-04-22 07:25:48 +0000 |
| commit | 5dae152ee422ed9383217965aff92b331c4c248e (patch) | |
| tree | f18fa993f888fe0fa42799687c89f103347ed76d | |
| parent | feat(mdx_analyzer): add vim.lsp.config support (#3757) (diff) | |
| download | nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar.gz nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar.bz2 nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar.lz nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar.xz nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.tar.zst nvim-lspconfig-5dae152ee422ed9383217965aff92b331c4c248e.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 42 | ||||
| -rw-r--r-- | doc/configs.txt | 40 |
2 files changed, 80 insertions, 2 deletions
diff --git a/doc/configs.md b/doc/configs.md index 5c8c84a3..ac2b31a7 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -164,6 +164,7 @@ Nvim by running `:help lspconfig-all`. - [markdown_oxide](#markdown_oxide) - [marko-js](#marko-js) - [marksman](#marksman) +- [mdx_analyzer](#mdx_analyzer) - [mesonlsp](#mesonlsp) - [metals](#metals) - [millet](#millet) @@ -6299,6 +6300,45 @@ Default config: --- +## 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 config: +- `before_init` source (use "gF" to open): [../lsp/mdx_analyzer.lua:11](../lsp/mdx_analyzer.lua#L11) +- `cmd` : + ```lua + { "mdx-language-server", "--stdio" } + ``` +- `filetypes` : + ```lua + { "mdx" } + ``` +- `init_options` : + ```lua + { + typescript = {} + } + ``` +- `root_markers` : + ```lua + { "package.json" } + ``` +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `true` + +--- + ## mesonlsp https://github.com/JCWasmx86/mesonlsp @@ -7337,7 +7377,7 @@ Default config: ``` - `cmd` : ```lua - { "OmniSharp", "-z", "--hostPID", "1856", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } + { "OmniSharp", "-z", "--hostPID", "1875", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } ``` - `filetypes` : ```lua diff --git a/doc/configs.txt b/doc/configs.txt index d8e2541c..98064681 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -5801,6 +5801,44 @@ Default config: ------------------------------------------------------------------------------ +mdx_analyzer + +https://github.com/mdx-js/mdx-analyzer + +`mdx-analyzer`, a language server for MDX + +Snippet to enable the language server: >lua + vim.lsp.enable('mdx_analyzer') + + +Default config: +- `before_init` source (use "gF" to open): [../lsp/mdx_analyzer.lua:11](../lsp/mdx_analyzer.lua#L11) +- `cmd` : + ```lua + { "mdx-language-server", "--stdio" } + ``` +- `filetypes` : + ```lua + { "mdx" } + ``` +- `init_options` : + ```lua + { + typescript = {} + } + ``` +- `root_markers` : + ```lua + { "package.json" } + ``` +- `settings` : + ```lua + {} + ``` +- `single_file_support` : `true` + + +------------------------------------------------------------------------------ mesonlsp https://github.com/JCWasmx86/mesonlsp @@ -6808,7 +6846,7 @@ Default config: ``` - `cmd` : ```lua - { "OmniSharp", "-z", "--hostPID", "1856", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } + { "OmniSharp", "-z", "--hostPID", "1875", "DotNet:enablePackageRestore=false", "--encoding", "utf-8", "--languageserver" } ``` - `filetypes` : ```lua |
