aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/csharp_ls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/csharp_ls.lua')
-rw-r--r--lua/lspconfig/csharp_ls.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/lua/lspconfig/csharp_ls.lua b/lua/lspconfig/csharp_ls.lua
deleted file mode 100644
index b26cb137..00000000
--- a/lua/lspconfig/csharp_ls.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-local configs = require 'lspconfig/configs'
-local util = require 'lspconfig/util'
-
-local server_name = 'csharp_ls'
-
-configs[server_name] = {
- default_config = {
- cmd = { 'csharp-ls' },
- root_dir = util.root_pattern('*.sln', '*.csproj', '.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`.
- ]],
- },
-}