mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 16:00:05 +08:00
17 lines
354 B
Lua
17 lines
354 B
Lua
|
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.
|
||
|
]],
|
||
|
},
|
||
|
}
|