plugins/nvim-osc52: hide warnings in tests

This commit is contained in:
Matt Sturgeon 2024-07-05 15:35:57 +01:00
parent 99f272d8c7
commit b59fa976d0
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -1,10 +1,16 @@
{ pkgs, ... }:
{
empty = {
plugins.nvim-osc52.enable = true;
# Hide warnings, since this plugin is deprecated
warnings = pkgs.lib.mkForce [ ];
};
defaults = {
plugins.nvim-osc52 = {
enable = true;
maxLength = 0;
silent = false;
trim = false;
@ -14,5 +20,8 @@
enable = true;
};
};
# Hide warnings, since this plugin is deprecated
warnings = pkgs.lib.mkForce [ ];
};
}