nvim/lsp/vale_ls.lua
2025-09-22 16:07:34 +02:00

12 lines
296 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 = { 'markdown', 'text', 'tex', 'rst' },
root_markers = { '.vale.ini' },
}