mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
20 lines
268 B
Nix
20 lines
268 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.better-escape.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.better-escape = {
|
||
|
enable = true;
|
||
|
|
||
|
mapping = [
|
||
|
"jj"
|
||
|
"jk"
|
||
|
];
|
||
|
timeout = 150;
|
||
|
clearEmptyLines = false;
|
||
|
keys = "<ESC>";
|
||
|
};
|
||
|
};
|
||
|
}
|