mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +02:00
plugins/nvim-osc52: hide warnings in tests
This commit is contained in:
parent
99f272d8c7
commit
b59fa976d0
1 changed files with 9 additions and 0 deletions
|
@ -1,10 +1,16 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
empty = {
|
empty = {
|
||||||
plugins.nvim-osc52.enable = true;
|
plugins.nvim-osc52.enable = true;
|
||||||
|
|
||||||
|
# Hide warnings, since this plugin is deprecated
|
||||||
|
warnings = pkgs.lib.mkForce [ ];
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
plugins.nvim-osc52 = {
|
plugins.nvim-osc52 = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
maxLength = 0;
|
maxLength = 0;
|
||||||
silent = false;
|
silent = false;
|
||||||
trim = false;
|
trim = false;
|
||||||
|
@ -14,5 +20,8 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Hide warnings, since this plugin is deprecated
|
||||||
|
warnings = pkgs.lib.mkForce [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue