mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 06:14:32 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
|
@ -1,47 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.better-escape.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
|
||||
plugins.better-escape = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
timeout = "vim.o.timeoutlen";
|
||||
default_mappings = true;
|
||||
mappings = {
|
||||
i.j = {
|
||||
k = "<Esc>";
|
||||
j = "<Esc>";
|
||||
};
|
||||
c.j = {
|
||||
k = "<Esc>";
|
||||
j = "<Esc>";
|
||||
};
|
||||
t.j = {
|
||||
k = "<Esc>";
|
||||
j = "<Esc>";
|
||||
};
|
||||
v.j.k = "<Esc>";
|
||||
s.j.k = "<Esc>";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.better-escape = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
mappings.i.j = {
|
||||
k = "<Esc>";
|
||||
j = "<Esc>";
|
||||
};
|
||||
timeout = 150;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue