1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 15:32:48 +01:00
nixvim/plugins/by-name/mini-map/default.nix
2025-11-02 12:40:36 +00:00

26 lines
529 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-map";
moduleName = "mini.map";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
integrations = lib.nixvim.nestedLiteralLua "nil";
symbols = {
encode = lib.nixvim.nestedLiteralLua "nil";
scroll_line = "";
scroll_view = "";
};
window = {
focusable = false;
side = "right";
show_integration_count = true;
width = 10;
winblend = 25;
zindex = 10;
};
};
}