mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-15 15:07:48 +00:00
Merge pull request #1332 from pyrox0/feat/rumdl
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
Some checks are pending
Set up binary cache / cachix (default) (push) Waiting to run
Set up binary cache / cachix (maximal) (push) Waiting to run
Set up binary cache / cachix (nix) (push) Waiting to run
Treewide Checks / Validate flake (push) Waiting to run
Treewide Checks / Check formatting (push) Waiting to run
Treewide Checks / Check source tree for typos (push) Waiting to run
Treewide Checks / Validate documentation builds (push) Waiting to run
Treewide Checks / Validate hyperlinks in documentation sources (push) Waiting to run
Treewide Checks / Validate Editorconfig conformance (push) Waiting to run
Build and deploy documentation / Check latest commit (push) Waiting to run
Build and deploy documentation / publish (push) Blocked by required conditions
languages/markdown: support rumdl
This commit is contained in:
commit
516007a475
2 changed files with 17 additions and 0 deletions
|
|
@ -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`
|
||||||
|
|
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue