nix-community.nixvim/tests/test-sources/plugins/by-name/markview/default.nix
Austin Horstman 3feb4b4b4b plugins/markview: v25 migration
Co-Authored-By: Matt Sturgeon <matt@sturgeon.me.uk>
2025-03-19 00:51:22 +01:00

29 lines
537 B
Nix

{
empty = {
plugins.markview.enable = true;
};
defaults = {
plugins.markview = {
enable = true;
settings = {
preview = {
enable = true;
buf_ignore = [ ];
icon_provider = "internal";
filetypes = [ ];
hybrid_modes = [ ];
ignore_previews = [ ];
max_buf_lines = 1000;
modes = [ ];
render_distance = [
200
200
];
splitview_winopts = { };
};
};
};
};
}