mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
13 lines
323 B
Lua
13 lines
323 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/errata-ai/vale-ls
|
|
---
|
|
--- An implementation of the Language Server Protocol (LSP) for the Vale command-line tool.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'vale-ls' },
|
|
filetypes = { 'asciidoc', 'markdown', 'text', 'tex', 'rst', 'html', 'xml' },
|
|
root_markers = { '.vale.ini' },
|
|
}
|