plugins/flit: init

This commit is contained in:
Johan Larsson 2025-01-01 21:47:46 +01:00 committed by Gaétan Lepage
parent cbddd58c69
commit 87ee660991
2 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
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;
};
};
};
}