nix-community.nixvim/tests/test-sources/plugins/utils/notify.nix
2023-12-22 14:48:15 +01:00

31 lines
570 B
Nix

{
empty = {
plugins.notify.enable = true;
};
defaults = {
plugins.notify = {
enable = true;
level = "info";
timeout = 5000;
maxWidth = null;
maxHeight = null;
stages = "fade_in_slide_out";
backgroundColour = "NotifyBackground";
icons = {
error = "";
warn = "";
info = "";
debug = "";
trace = "";
};
onOpen = null;
onClose = null;
render = "default";
minimumWidth = 50;
fps = 30;
topDown = true;
};
};
}