1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/flit/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

39 lines
625 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.__empty = { };
};
};
};
example = {
plugins.flit = {
enable = true;
settings = {
keys = {
f = "f";
F = "F";
t = "t";
T = "T";
};
labeled_modes = "nv";
multiline = true;
};
};
};
}