vectorcode
URL: https://github.com/Davidyz/VectorCode/blob/main/docs/neovim/README.md
Maintainers: Austin Horstman
Code-aware local retrieval and completion integration for Neovim.
plugins.vectorcode.enable
Whether to enable vectorcode.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.vectorcode.package
The vectorcode package to use.
Type: package
Default:
pkgs.vimPlugins.vectorcode-nvim
Declared by:
plugins.vectorcode.autoLoad
Whether to automatically load vectorcode when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.vectorcode.callSetup
Whether to generate the standard require('vectorcode').setup(...) call for this plugin.
Explicitly set to true to call .setup(), even when settings is undefined.
Or set to false to disable calling .setup() at all.
Type: boolean
Default:
true when settings is explicitly defined, otherwise false.
Declared by:
plugins.vectorcode.settings
Options provided to the require('vectorcode').setup function.
Type: lua value
Default:
{ }
Example:
{
async_backend = "lsp";
n_query = 5;
sync_log_env_var = true;
}
Declared by: