Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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.

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.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: