blob: f4a939162a69b25ac794d537252daf73a3d5bc76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
---@brief
---
--- https://github.com/iamcco/diagnostic-languageserver
---
--- Diagnostic language server integrate with linters.
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 = {},
}
|