languages/markdown: add markdown-oxide server option

This commit is contained in:
alfarel 2025-09-07 00:47:04 +00:00
commit 74d6fe86e6
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View file

@ -289,6 +289,8 @@
- Fix [blink.cmp] breaking when built-in sources were modified. - Fix [blink.cmp] breaking when built-in sources were modified.
- Fix [conform.nvim] not allowing disabling formatting on and after save. Use - Fix [conform.nvim] not allowing disabling formatting on and after save. Use
`null` value to disable them if conform is enabled. `null` value to disable them if conform is enabled.
- Add [markdown-oxide](https://github.com/Feel-ix-343/markdown-oxide) option to
markdown language module.
[TheColorman](https://github.com/TheColorman): [TheColorman](https://github.com/TheColorman):

View file

@ -23,6 +23,13 @@
filetypes = ["markdown" "markdown.mdx"]; filetypes = ["markdown" "markdown.mdx"];
root_markers = [".marksman.toml" ".git"]; root_markers = [".marksman.toml" ".git"];
}; };
markdown-oxide = {
enable = true;
cmd = [(getExe pkgs.markdown-oxide)];
filetypes = ["markdown"];
root_markers = [".git" ".obsidian" ".moxide.toml"];
};
}; };
defaultFormat = "deno_fmt"; defaultFormat = "deno_fmt";