aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/diagnosticls.lua
blob: b9cee6b3fdc5919a94aaad0b21ac7ce8a6515c2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@brief
---
--- https://github.com/iamcco/diagnostic-languageserver
---
--- Diagnostic language server integrate with linters.
---@type vim.lsp.Config
return {
  -- Configuration from https://github.com/iamcco/diagnostic-languageserver#config--document
  cmd = { 'diagnostic-languageserver', '--stdio' },
  root_markers = { '.git' },
  -- Empty by default, override to add filetypes.
  filetypes = {},
}