nix-community.nixvim/tests/test-sources/plugins/utils/notify.nix

32 lines
570 B
Nix
Raw Normal View History

{
empty = {
plugins.notify.enable = true;
};
defaults = {
plugins.notify = {
enable = true;
2023-11-30 15:50:24 +01:00
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;
};
};
}