1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/plugins/by-name/mini-notify/default.nix
2025-11-02 12:36:20 +00:00

26 lines
546 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-notify";
moduleName = "mini.notify";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
content = {
format = lib.nixvim.nestedLiteralLua "nil";
sort = lib.nixvim.nestedLiteralLua "nil";
};
lsp_progress = {
enable = true;
level = "INFO";
duration_last = 1000;
};
window = {
config = lib.literalExpression "lib.nixvim.emptyTable";
max_width_share = 0.382;
winblend = 25;
};
};
}