mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-23 12:15:26 +02:00
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)
This commit is contained in:
parent
f5f33b5390
commit
c6fa30b81c
7 changed files with 144 additions and 0 deletions
18
tests/plugins/nvim-osc52.nix
Normal file
18
tests/plugins/nvim-osc52.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.nvim-osc52.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.nvim-osc52 = {
|
||||
maxLength = 0;
|
||||
silent = false;
|
||||
trim = false;
|
||||
|
||||
keymaps = {
|
||||
silent = false;
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue