mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
19 lines
252 B
Nix
19 lines
252 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.nvim-osc52.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.nvim-osc52 = {
|
||
|
maxLength = 0;
|
||
|
silent = false;
|
||
|
trim = false;
|
||
|
|
||
|
keymaps = {
|
||
|
silent = false;
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|