1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/mini-map: init

This commit is contained in:
Heitor Augusto 2025-11-02 01:49:37 -03:00 committed by Austin Horstman
parent a412c12e81
commit e948015920
2 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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;
};
};
}