nix-community.nixvim/tests/plugins/nvim-osc52.nix
traxys c6fa30b81c
plugins/nvim-osc52: init + tests (#261)
nvim-osc52 is a plugin that allows to copy from neovim using OSC52 control sequences (works through SSH for example)
2023-03-16 11:18:54 +01:00

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;
};
};
};
}