mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
230 B
Lua
13 lines
230 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/rvben/rumdl
|
|
---
|
|
--- Markdown Linter and Formatter written in Rust.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'rumdl', 'server' },
|
|
filetypes = { 'markdown' },
|
|
root_markers = { '.git' },
|
|
}
|