nix-community.nixvim/tests/test-sources/plugins/by-name/mini-ai/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
247 B
Nix
Raw Normal View History

2025-05-23 18:35:06 -03:00
{
empty = {
plugins.mini-ai.enable = true;
};
example = {
plugins.mini-ai = {
enable = true;
settings = {
n_lines = 500;
search_method = "cover_or_nearest";
silent = true;
};
};
};
}