mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
39 lines
617 B
Nix
39 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;
|
|
};
|
|
};
|
|
};
|
|
}
|