mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 11:30:06 +02:00
18 lines
247 B
Nix
18 lines
247 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-ai.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-ai = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
n_lines = 500;
|
||
|
search_method = "cover_or_nearest";
|
||
|
silent = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|