languages/markdown: support rumdl

This commit is contained in:
dish 2026-01-10 20:24:41 -05:00
commit af0fdd9f27
2 changed files with 17 additions and 0 deletions

View file

@ -31,6 +31,13 @@
filetypes = ["markdown"];
root_markers = [".git" ".obsidian" ".moxide.toml"];
};
rumdl = {
enable = true;
cmd = [(getExe pkgs.rumdl) "server"];
filetypes = ["markdown"];
root_markers = [".git" ".rumdl.toml" "rumdl.toml" ".config/rumdl.toml" "pyproject.toml"];
};
};
defaultFormat = ["deno_fmt"];
@ -42,6 +49,9 @@
deno_fmt = {
command = getExe pkgs.deno;
};
rumdl = {
command = getExe pkgs.rumdl;
};
prettierd = {
command = getExe pkgs.prettierd;
};
@ -51,6 +61,9 @@
markdownlint-cli2 = {
package = pkgs.markdownlint-cli2;
};
rumdl = {
package = pkgs.rumdl;
};
};
in {
options.vim.languages.markdown = {