1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-25 02:10:58 +01:00

plugins/marks: migrate to mkNeovimPlugin

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-09-29 05:03:37 +02:00 committed by Matt Sturgeon
parent 283775355b
commit 0a721c85dc
3 changed files with 84 additions and 195 deletions

View file

@ -0,0 +1,22 @@
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.
'')
];
}