1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/markview/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

29 lines
585 B
Nix

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