mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +02:00
26 lines
392 B
Nix
26 lines
392 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.blink-compat.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.blink-compat = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
impersonate_nvim_cmp = true;
|
||
|
debug = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
default = {
|
||
|
plugins.blink-compat = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
impersonate_nvim_cmp = false;
|
||
|
debug = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|