mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
17 lines
247 B
Nix
17 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;
|
|
};
|
|
};
|
|
};
|
|
}
|