diff options
Diffstat (limited to 'lua/lspconfig/diagnosticls.lua')
| -rw-r--r-- | lua/lspconfig/diagnosticls.lua | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lua/lspconfig/diagnosticls.lua b/lua/lspconfig/diagnosticls.lua deleted file mode 100644 index ccfd76bd..00000000 --- a/lua/lspconfig/diagnosticls.lua +++ /dev/null @@ -1,29 +0,0 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' - -local server_name = 'diagnosticls' -local bin_name = 'diagnostic-languageserver' -if vim.fn.has 'win32' == 1 then - bin_name = bin_name .. '.cmd' -end - -configs[server_name] = { - default_config = { - cmd = { bin_name, '--stdio' }, - root_dir = util.find_git_ancestor, - single_file_support = true, - filetypes = {}, - }, - docs = { - description = [[ -https://github.com/iamcco/diagnostic-languageserver - -Diagnostic language server integrate with linters. -]], - default_config = { - filetypes = 'Empty by default, override to add filetypes', - root_dir = "Vim's starting directory", - init_options = 'Configuration from https://github.com/iamcco/diagnostic-languageserver#config--document', - }, - }, -} |
