mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 19:24:34 +02:00
22 lines
631 B
Nix
22 lines
631 B
Nix
|
lib: {
|
||
|
deprecateExtraOptions = true;
|
||
|
optionsRenamedToSettings = [
|
||
|
"backend"
|
||
|
"maxWidth"
|
||
|
"maxHeight"
|
||
|
"maxWidthWindowPercentage"
|
||
|
"maxHeightWindowPercentage"
|
||
|
"windowOverlapClearEnabled"
|
||
|
"windowOverlapClearFtIgnore"
|
||
|
"editorOnlyRenderWhenFocused"
|
||
|
"tmuxShowOnlyInActiveWindow"
|
||
|
"hijackFilePatterns"
|
||
|
];
|
||
|
imports = [
|
||
|
(lib.mkRemovedOptionModule [ "plugins" "image" "integrations" ] ''
|
||
|
Nixvim(plugins.image): The option `integrations` has been renamed to `settings.integrations`.
|
||
|
Warning: sub-options now have the same name as upstream (`clear_in_insert_mode`...).
|
||
|
'')
|
||
|
];
|
||
|
}
|