mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-01 12:54:30 +02:00
31 lines
510 B
Nix
31 lines
510 B
Nix
let
|
|
# This plugin is deprecated
|
|
warnings = expect: [
|
|
(expect "count" 1)
|
|
(expect "any" "This plugin is obsolete and will be removed after 24.11.")
|
|
];
|
|
in
|
|
{
|
|
empty = {
|
|
plugins.nvim-osc52.enable = true;
|
|
|
|
test = { inherit warnings; };
|
|
};
|
|
|
|
defaults = {
|
|
plugins.nvim-osc52 = {
|
|
enable = true;
|
|
|
|
maxLength = 0;
|
|
silent = false;
|
|
trim = false;
|
|
|
|
keymaps = {
|
|
silent = false;
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
test = { inherit warnings; };
|
|
};
|
|
}
|