nix-darwin/modules/aspects/_editor/nvf/lsp/languages/markdown.nix
Poby f103e93429
feat: flake update
marksman and mise causing rebuild switch errors
2026-04-17 00:10:19 +09:00

30 lines
557 B
Nix
Executable file

{
# markdown
enable = true;
extensions = {
render-markdown-nvim = {
enable = true;
setupOpts = {
checkbox = {
checked.scope_highlight = "@markup.strikethrough";
};
};
};
};
extraDiagnostics = {
enable = true;
types = ["markdownlint-cli2"];
};
format = {
enable = true;
type = [
"prettierd"
"deno_fmt"
];
};
lsp = {
enable = true;
servers = ["markdown-oxide"]; # https://github.com/NotAShelf/nvf/discussions/1389
};
treesitter.enable = true;
}