mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-22 03:35:21 +02:00
plugins/flit: init
This commit is contained in:
parent
cbddd58c69
commit
87ee660991
2 changed files with 102 additions and 0 deletions
39
tests/test-sources/plugins/by-name/flit/default.nix
Normal file
39
tests/test-sources/plugins/by-name/flit/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue