nix-community.nixvim/tests/test-sources/plugins/utils/spider.nix
2023-04-16 11:09:59 +02:00

22 lines
328 B
Nix

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