1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 22:12:47 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-map/default.nix
2025-11-02 12:40:36 +00:00

30 lines
554 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;
};
};
};
};
}