1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/tests/test-sources/plugins/by-name/spider/default.nix
saygo-png 95fae10d35 tests/spider: update test
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-07-14 11:27:56 +00:00

22 lines
337 B
Nix

{
empty = {
plugins.spider.enable = true;
};
example = {
plugins.spider = {
enable = true;
settings.skipInsignificantPunctuation = true;
keymaps = {
silent = true;
motions = {
w = "w";
e = "e";
b = "b";
g = "ge";
};
};
};
};
}