Skip to content

Commit

Permalink
[docgen] Update CONFIG.md
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
github-actions committed Sep 12, 2021
1 parent 86d5f2a commit 83a4c2e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ that config.
- [cmake](#cmake)
- [codeqlls](#codeqlls)
- [crystalline](#crystalline)
- [csharp_ls](#csharp_ls)
- [cssls](#cssls)
- [dartls](#dartls)
- [denols](#denols)
Expand Down Expand Up @@ -540,6 +541,39 @@ require'lspconfig'.crystalline.setup{}
```


## csharp_ls

https://github.com/razzmatazz/csharp-language-server

Language Server for C#.

csharp-ls requires the [dotnet-sdk](https://dotnet.microsoft.com/download) to be installed.

The preferred way to install csharp-ls is with `dotnet tool install --global csharp-ls`.



**Snippet to enable the language server:**
```lua
require'lspconfig'.csharp_ls.setup{}
```

**Commands and default values:**
```lua
Commands:

Default Values:
cmd = { "csharp-ls" }
filetypes = { "cs" }
init_options = {
AutomaticWorkspaceInit = true
}
root_dir = function(startpath)
return M.search_ancestors(startpath, matcher)
end
```


## cssls


Expand Down

0 comments on commit 83a4c2e

Please sign in to comment.