1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-28 21:21:03 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-map/default.nix
Matt Sturgeon 824e048096 tests/fetch-tests: only apply required args
Using `functionArgs` and `intersectAttrs`, apply only the required args
to test module files.
2025-11-24 11:09:51 +00:00

30 lines
549 B
Nix

{ lib }:
{
empty = {
plugins.mini-map.enable = true;
};
defaults = {
plugins.mini-map = {
enable = true;
settings = {
integrations = lib.nixvim.mkRaw "nil";
symbols = {
encode = lib.nixvim.mkRaw "nil";
scroll_line = "";
scroll_view = "";
};
window = {
focusable = false;
side = "right";
show_integration_count = true;
width = 10;
winblend = 25;
zindex = 10;
};
};
};
};
}