mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-13 22:12:47 +01:00
30 lines
554 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|