[nvim] use deno to format markdown

This commit is contained in:
eleith 2023-03-05 17:50:13 +00:00
parent 91ce304ce7
commit 0fc8aed460
1 changed files with 8 additions and 1 deletions

View File

@ -107,7 +107,6 @@ return {
"yaml",
"graphql",
"handlebars",
"markdown",
},
}),
@ -372,6 +371,14 @@ return {
return utils.is_executable("xmllint")
end,
}),
null_ls.builtins.formatting.deno_fmt.with({
condition = function()
return utils.is_executable("deno")
end,
filetypes = { "markdown" },
}),
},
})
end,