mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-12 18:24:35 +02:00
nvim-osc52 is a plugin that allows to copy from neovim using OSC52 control sequences (works through SSH for example)
18 lines
252 B
Nix
18 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;
|
|
};
|
|
};
|
|
};
|
|
}
|