1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/tests/test-sources/plugins/by-name/nvim-osc52/default.nix
2024-09-09 11:50:38 +01:00

26 lines
446 B
Nix

{
empty = {
plugins.nvim-osc52.enable = true;
# Hide warnings, since this plugin is deprecated
test.checkWarnings = false;
};
defaults = {
plugins.nvim-osc52 = {
enable = true;
maxLength = 0;
silent = false;
trim = false;
keymaps = {
silent = false;
enable = true;
};
};
# Hide warnings, since this plugin is deprecated
test.checkWarnings = false;
};
}