mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
23 lines
328 B
Nix
23 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|