mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
15 lines
407 B
Lua
15 lines
407 B
Lua
---@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 = {},
|
|
}
|