refactor: lint and dap
This commit is contained in:
parent
7785311043
commit
2bed6f50c0
46 changed files with 2453 additions and 0 deletions
20
nivm/lua/settings/lsp_config/csharp_ls.lua
Normal file
20
nivm/lua/settings/lsp_config/csharp_ls.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
local util = require 'lspconfig.util'
|
||||
|
||||
return {
|
||||
default_config = {
|
||||
cmd = { 'csharp-ls' },
|
||||
root_dir = util.root_pattern('*.sln', '*.csproj', '*.fsproj', '.git'),
|
||||
filetypes = { 'cs' },
|
||||
init_options = {
|
||||
AutomaticWorkspaceInit = true,
|
||||
},
|
||||
},
|
||||
docs = {
|
||||
description = [[
|
||||
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`.
|
||||
]],
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue