mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-11 21:26:31 +00:00
languages/markdown: support rumdl
This commit is contained in:
parent
5b5548d218
commit
af0fdd9f27
2 changed files with 17 additions and 0 deletions
|
|
@ -124,3 +124,7 @@
|
|||
{command}`:healthcheck` doesn't know that.
|
||||
- Remove [which-key.nvim] `<leader>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`
|
||||
|
|
|
|||
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue