minuet
URL: https://github.com/milanglacier/minuet-ai.nvim/
Maintainers: Gaetan Lepage
plugins.minuet.enable
Whether to enable minuet-ai.nvim.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.minuet.package
The minuet-ai.nvim package to use.
Type: package
Default:
pkgs.vimPlugins.minuet-ai-nvim
Declared by:
plugins.minuet.autoLoad
Whether to automatically load minuet-ai.nvim when neovim starts.
Type: boolean
Default:
false
when lazy-loading is enabled.
Example:
false
Declared by:
plugins.minuet.settings
Options provided to the require('minuet').setup
function.
Type: attribute set of anything
Default:
{ }
Example:
{
provider = "openai_compatible";
provider_options = {
openai_compatible = {
api_key = "OPENROUTER_API_KEY";
end_point = "https://openrouter.ai/api/v1/chat/completions";
model = "google/gemini-flash-1.5";
name = "OpenRouter";
optional = {
max_tokens = 256;
top_p = 0.9;
};
stream = true;
};
};
}
Declared by: