1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-14 14:32:47 +01:00
nixvim/tests/test-sources/plugins/by-name/easyescape/default.nix

30 lines
399 B
Nix

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