1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/by-name/marks/deprecations.nix
saygo-png 0a721c85dc plugins/marks: migrate to mkNeovimPlugin
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-30 23:51:22 +00:00

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.
'')
];
}