mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 02:08:40 +02:00
40 lines
617 B
Nix
40 lines
617 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.flit.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.flit = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
keys = {
|
||
|
f = "f";
|
||
|
F = "F";
|
||
|
t = "t";
|
||
|
T = "T";
|
||
|
};
|
||
|
labeled_modes = "v";
|
||
|
clever_repeat = true;
|
||
|
multiline = true;
|
||
|
opts = { };
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.flit = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
keys = {
|
||
|
f = "f";
|
||
|
F = "F";
|
||
|
t = "t";
|
||
|
T = "T";
|
||
|
};
|
||
|
labeled_modes = "nv";
|
||
|
multiline = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|