nix-community.nixvim/tests/test-sources/plugins/by-name/markview/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
537 B
Nix
Raw Permalink Normal View History

{
2024-08-09 21:32:45 -05:00
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 = { };
2024-08-09 21:32:45 -05:00
};
};
};
};
}