blob: 2021efae53b2576afb85982f5ae8c24bac1c28d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---@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 = { 'markdown', 'text', 'tex', 'rst' },
root_markers = { '.vale.ini' },
}
|