14 lines
346 B
Lua
14 lines
346 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/kitten/prosemd-lsp
|
|
---
|
|
--- An experimental LSP for Markdown.
|
|
---
|
|
--- Please see the manual installation instructions: https://github.com/kitten/prosemd-lsp#manual-installation
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'prosemd-lsp', '--stdio' },
|
|
filetypes = { 'markdown' },
|
|
root_markers = { '.git' },
|
|
}
|