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