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

30 lines
547 B
Nix

{ lib, ... }:
{
empty = {
plugins.mini-notify.enable = true;
};
defaults = {
plugins.mini-notify = {
enable = true;
settings = {
content = {
format = lib.nixvim.mkRaw "nil";
sort = lib.nixvim.mkRaw "nil";
};
lsp_progress = {
enable = true;
level = "INFO";
duration_last = 1000;
};
window = {
config = lib.nixvim.emptyTable;
max_width_share = 0.382;
winblend = 25;
};
};
};
};
}