mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
27 lines
471 B
Nix
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 [ ];
|
|
};
|
|
}
|