mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:20:06 +08:00
17 lines
354 B
Lua
Vendored
17 lines
354 B
Lua
Vendored
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'vale-ls' },
|
|
filetypes = { 'markdown', 'text' },
|
|
root_dir = util.root_pattern '.vale.ini',
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/errata-ai/vale-ls
|
|
|
|
An implementation of the Language Server Protocol (LSP) for the Vale command-line tool.
|
|
]],
|
|
},
|
|
}
|