1

Refresh generated nvim config

This commit is contained in:
2024-06-03 21:11:20 +02:00
parent fd506d4921
commit 50723ef645
2114 changed files with 84528 additions and 44473 deletions

View File

@ -164,6 +164,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [mojo](#mojo)
- [motoko_lsp](#motoko_lsp)
- [move_analyzer](#move_analyzer)
- [msbuild_project_tools_server](#msbuild_project_tools_server)
- [mutt_ls](#mutt_ls)
- [nelua_lsp](#nelua_lsp)
- [neocmake](#neocmake)
@ -7326,6 +7327,47 @@ require'lspconfig'.move_analyzer.setup{}
```
## msbuild_project_tools_server
https://github.com/tintoy/msbuild-project-tools-server/
MSBuild Project Tools Server can be installed by following the README.MD on the above repository.
Example config:
```lua
lspconfig.msbuild_project_tools_server.setup {
cmd = {'dotnet', '/path/to/server/MSBuildProjectTools.LanguageServer.Host.dll'}
}
```
**Snippet to enable the language server:**
```lua
require'lspconfig'.msbuild_project_tools_server.setup{}
```
**Default values:**
- `cmd` :
```lua
{ "dotnet", "MSBuildProjectTools.LanguageServer.Host.dll" }
```
- `filetypes` :
```lua
{ "xml.csproj", "xml.fsproj", "sln" }
```
- `init_options` :
```lua
{}
```
- `root_dir` :
```lua
root_pattern('.git')
```
## mutt_ls
https://github.com/neomutt/mutt-language-server

View File

@ -164,6 +164,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [mojo](#mojo)
- [motoko_lsp](#motoko_lsp)
- [move_analyzer](#move_analyzer)
- [msbuild_project_tools_server](#msbuild_project_tools_server)
- [mutt_ls](#mutt_ls)
- [nelua_lsp](#nelua_lsp)
- [neocmake](#neocmake)
@ -7326,6 +7327,47 @@ require'lspconfig'.move_analyzer.setup{}
```
## msbuild_project_tools_server
https://github.com/tintoy/msbuild-project-tools-server/
MSBuild Project Tools Server can be installed by following the README.MD on the above repository.
Example config:
```lua
lspconfig.msbuild_project_tools_server.setup {
cmd = {'dotnet', '/path/to/server/MSBuildProjectTools.LanguageServer.Host.dll'}
}
```
**Snippet to enable the language server:**
```lua
require'lspconfig'.msbuild_project_tools_server.setup{}
```
**Default values:**
- `cmd` :
```lua
{ "dotnet", "MSBuildProjectTools.LanguageServer.Host.dll" }
```
- `filetypes` :
```lua
{ "xml.csproj", "xml.fsproj", "sln" }
```
- `init_options` :
```lua
{}
```
- `root_dir` :
```lua
root_pattern('.git')
```
## mutt_ls
https://github.com/neomutt/mutt-language-server

View File

@ -0,0 +1,21 @@
lspconfig lspconfig.txt /*lspconfig*
lspconfig-all server_configurations.txt /*lspconfig-all*
lspconfig-commands lspconfig.txt /*lspconfig-commands*
lspconfig-completion lspconfig.txt /*lspconfig-completion*
lspconfig-configurations lspconfig.txt /*lspconfig-configurations*
lspconfig-debugging lspconfig.txt /*lspconfig-debugging*
lspconfig-global-defaults lspconfig.txt /*lspconfig-global-defaults*
lspconfig-highlight lspconfig.txt /*lspconfig-highlight*
lspconfig-logging lspconfig.txt /*lspconfig-logging*
lspconfig-new lspconfig.txt /*lspconfig-new*
lspconfig-quickstart lspconfig.txt /*lspconfig-quickstart*
lspconfig-root-advanced lspconfig.txt /*lspconfig-root-advanced*
lspconfig-root-composition lspconfig.txt /*lspconfig-root-composition*
lspconfig-root-detection lspconfig.txt /*lspconfig-root-detection*
lspconfig-root-dir lspconfig.txt /*lspconfig-root-dir*
lspconfig-scope lspconfig.txt /*lspconfig-scope*
lspconfig-server-configurations server_configurations.txt /*lspconfig-server-configurations*
lspconfig-setup lspconfig.txt /*lspconfig-setup*
lspconfig-setup-hook lspconfig.txt /*lspconfig-setup-hook*
lspconfig-single-file-support lspconfig.txt /*lspconfig-single-file-support*
lspconfig.txt lspconfig.txt /*lspconfig.txt*

View File

@ -0,0 +1,30 @@
local util = require 'lspconfig.util'
local host_dll_name = 'MSBuildProjectTools.LanguageServer.Host.dll'
return {
default_config = {
filetypes = { 'xml.csproj', 'xml.fsproj', 'sln' },
root_dir = util.find_git_ancestor,
init_options = {},
cmd = { 'dotnet', host_dll_name },
},
docs = {
description = [[
https://github.com/tintoy/msbuild-project-tools-server/
MSBuild Project Tools Server can be installed by following the README.MD on the above repository.
Example config:
```lua
lspconfig.msbuild_project_tools_server.setup {
cmd = {'dotnet', '/path/to/server/MSBuildProjectTools.LanguageServer.Host.dll'}
}
```
]],
default_config = {
root_dir = [[root_pattern('.git')]],
},
},
}