mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
22 lines
438 B
Nix
22 lines
438 B
Nix
lib: {
|
|
deprecateExtraOptions = true;
|
|
|
|
optionsRenamedToSettings = [
|
|
"builtinMarks"
|
|
"defaultMappings"
|
|
"signs"
|
|
"cyclic"
|
|
"forceWriteShada"
|
|
"refreshInterval"
|
|
"signPriority"
|
|
"excludedFiletypes"
|
|
"excludedBuftypes"
|
|
"mappings"
|
|
];
|
|
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [ "plugins" "marks" "bookmarks" ] ''
|
|
This option always caused a failed assertion, it has never worked.
|
|
'')
|
|
];
|
|
}
|