nix-community.nixvim/tests/test-sources/plugins/utils/nvim-osc52.nix
2024-07-05 16:06:01 +01:00

27 lines
471 B
Nix

{ 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;
keymaps = {
silent = false;
enable = true;
};
};
# Hide warnings, since this plugin is deprecated
warnings = pkgs.lib.mkForce [ ];
};
}