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

@ -124,3 +124,7 @@
{command}`:healthcheck` doesn't know that. {command}`:healthcheck` doesn't know that.
- Remove [which-key.nvim] `<leader>o` `+Notes` description which did not - Remove [which-key.nvim] `<leader>o` `+Notes` description which did not
actually correspond to any keybinds. actually correspond to any keybinds.
[pyrox0](https://github.com/pyrox0):
- Added [rumdl](https://github.com/rvben/rumdl) support to `languages.markdown`

View file

@ -31,6 +31,13 @@
filetypes = ["markdown"]; filetypes = ["markdown"];
root_markers = [".git" ".obsidian" ".moxide.toml"]; 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"]; defaultFormat = ["deno_fmt"];
@ -42,6 +49,9 @@
deno_fmt = { deno_fmt = {
command = getExe pkgs.deno; command = getExe pkgs.deno;
}; };
rumdl = {
command = getExe pkgs.rumdl;
};
prettierd = { prettierd = {
command = getExe pkgs.prettierd; command = getExe pkgs.prettierd;
}; };
@ -51,6 +61,9 @@
markdownlint-cli2 = { markdownlint-cli2 = {
package = pkgs.markdownlint-cli2; package = pkgs.markdownlint-cli2;
}; };
rumdl = {
package = pkgs.rumdl;
};
}; };
in { in {
options.vim.languages.markdown = { options.vim.languages.markdown = {