plugins/easyescape: switch to mkVimPlugin and add options

This commit is contained in:
Gaetan Lepage 2024-12-15 18:04:49 +01:00 committed by nix-infra-bot
parent a658e81d71
commit cb61e12bba
2 changed files with 58 additions and 15 deletions

View file

@ -2,4 +2,29 @@
empty = {
plugins.easyescape.enable = true;
};
defaults = {
plugins.easyescape = {
enable = true;
settings = {
chars = {
j = 1;
k = 1;
};
timeout = 100;
};
};
};
example = {
plugins.easyescape = {
enable = true;
settings = {
chars.j = 2;
timeout = 2000;
};
};
};
}