blob: 32d1d64fe647e6ea74de83d58da8dc3dacef19a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---@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' },
}
|