mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
30 lines
557 B
Nix
Executable file
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;
|
|
}
|