mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
30 lines
399 B
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;
|
|
};
|
|
};
|
|
};
|
|
}
|