diff --git a/docs/manual/release-notes/rl-0.9.md b/docs/manual/release-notes/rl-0.9.md index f02b739d..bb7fdabd 100644 --- a/docs/manual/release-notes/rl-0.9.md +++ b/docs/manual/release-notes/rl-0.9.md @@ -124,7 +124,3 @@ {command}`:healthcheck` doesn't know that. - Remove [which-key.nvim] `o` `+Notes` description which did not actually correspond to any keybinds. - -[pyrox0](https://github.com/pyrox0): - -- Added [rumdl](https://github.com/rvben/rumdl) support to `languages.markdown` diff --git a/modules/plugins/languages/markdown.nix b/modules/plugins/languages/markdown.nix index a2634e6d..feb3f2a5 100644 --- a/modules/plugins/languages/markdown.nix +++ b/modules/plugins/languages/markdown.nix @@ -31,13 +31,6 @@ 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"]; @@ -49,9 +42,6 @@ deno_fmt = { command = getExe pkgs.deno; }; - rumdl = { - command = getExe pkgs.rumdl; - }; prettierd = { command = getExe pkgs.prettierd; }; @@ -61,9 +51,6 @@ markdownlint-cli2 = { package = pkgs.markdownlint-cli2; }; - rumdl = { - package = pkgs.rumdl; - }; }; in { options.vim.languages.markdown = {