nix-community.nixvim/tests/test-sources/plugins/by-name/cutlass/default.nix
saygo-png 09126049a4 plugins/cutlass-nvim: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-08-22 21:48:53 +00:00

43 lines
719 B
Nix

{
empty = {
plugins.cutlass-nvim.enable = true;
};
defaults = {
plugins.cutlass-nvim = {
enable = true;
settings = {
cut_key = "nil";
override_del = "nil";
exclude.__empty = { };
registers = {
select = "_";
delete = "_";
change = "_";
};
};
};
};
example = {
plugins.cutlass-nvim = {
enable = true;
settings = {
override_del = true;
exclude = [
"ns"
"nS"
"nx"
"nX"
"nxx"
"nX"
];
registers = {
select = "s";
delete = "d";
change = "c";
};
};
};
};
}