summaryrefslogtreecommitdiff
path: root/nvim/lsp/diagnosticls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lsp/diagnosticls.lua')
-rwxr-xr-xnvim/lsp/diagnosticls.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/lsp/diagnosticls.lua b/nvim/lsp/diagnosticls.lua
new file mode 100755
index 0000000..f4a9391
--- /dev/null
+++ b/nvim/lsp/diagnosticls.lua
@@ -0,0 +1,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 = {},
+}