Files
dots/home/editors/nvim/plugins/lang/docs/markdown.nix
2025-12-01 18:24:34 +01:00

24 lines
480 B
Nix

{pkgs, ...}: {
plugins = {
markdown-preview = {
enable = true;
settings = {
auto_close = 0;
browser = "firefox";
page_title = "Markdown Preview";
};
};
render-markdown = {
enable = true;
settings = {
pipe_table.border = ["" "" "" "" "" "" "" "" "" "" ""];
};
};
};
extraPlugins = let
builds = import ../../builds.nix pkgs;
in [builds.table-nvim];
}