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