mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
plugins/easyescape: switch to mkVimPlugin and add options
This commit is contained in:
parent
a658e81d71
commit
cb61e12bba
2 changed files with 58 additions and 15 deletions
|
@ -2,4 +2,29 @@
|
|||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue