mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
25 lines
392 B
Nix
25 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;
|
|
};
|
|
};
|
|
};
|
|
}
|