mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
15 lines
346 B
Lua
15 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' },
|
|
}
|