mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
26 lines
446 B
Nix
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;
|
|
};
|
|
}
|