mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
* adding better escape * fixing formatting * fixing tests * fixing comments from pr * fixing comments from pr * Update tests/test-sources/plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * Update plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * Update plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * Update plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * Update plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * Update plugins/utils/better-escape.nix Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> * fixing comments from pr --------- Co-authored-by: Haseeb Majid <haseeb.majid@imaginecurve.com> Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
16 lines
244 B
Nix
16 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>";
|
|
};
|
|
};
|
|
}
|