1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-19 16:59:40 +01:00
nixvim/tests/test-sources/plugins/by-name/notify/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

33 lines
671 B
Nix

{
empty = {
plugins.notify.enable = true;
};
defaults = {
plugins.notify = {
enable = true;
settings = {
level = "info";
timeout = 5000;
max_width.__raw = "nil";
max_height.__raw = "nil";
stages = "fade_in_slide_out";
background_colour = "NotifyBackground";
icons = {
error = "";
warn = "";
info = "";
debug = "";
trace = "";
};
on_open.__raw = "nil";
on_close.__raw = "nil";
render = "default";
minimum_width = 50;
fps = 30;
top_down = true;
};
};
};
}