nix-community.nixvim/tests/test-sources/plugins/by-name/spider/default.nix
2024-09-09 11:50:38 +01: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";
};
};
};
};
}