spider
URL: https://github.com/chrisgrieser/nvim-spider/
Maintainers: Saygo
Use the w, e, b motions like a spider. Move by subwords and skip insignificant punctuation.
plugins.spider.enable
Whether to enable spider.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.spider.package
The spider package to use.
Type: package
Default:
pkgs.vimPlugins.nvim-spider
Declared by:
plugins.spider.autoLoad
Whether to automatically load spider when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.spider.callSetup
Whether to generate the standard require('spider').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.spider.settings
Options provided to the require('spider').setup function.
Type: lua value
Default:
{ }
Example:
{
callback = lib.nixvim.mkRaw ''
function()
print('nixvim')
end
'';
foo_bar = 42;
hostname = "localhost:8080";
}
Declared by: