aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/diagnosticls.lua
blob: 8c717ead86bd5c30c0714aa4ccaac8bd1cd7d055 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@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 = {},
}