nix-community.nixvim/tests/test-sources/plugins/by-name/flit/default.nix
2025-01-02 00:07:27 +01:00

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;
};
};
};
}