mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 12:45:24 +02:00
plugins/yanky: fix wrong definition of setupOptions
This commit is contained in:
parent
a6b541a3aa
commit
90847146d6
1 changed files with 14 additions and 14 deletions
|
@ -227,20 +227,20 @@ in {
|
||||||
picker.telescope.mappings
|
picker.telescope.mappings
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
system_clipboard = {
|
};
|
||||||
sync_with_ring = systemClipboard.syncWithRing;
|
system_clipboard = {
|
||||||
};
|
sync_with_ring = systemClipboard.syncWithRing;
|
||||||
highlight = {
|
};
|
||||||
on_put = highlight.onPut;
|
highlight = {
|
||||||
on_yank = highlight.onYank;
|
on_put = highlight.onPut;
|
||||||
inherit (highlight) timer;
|
on_yank = highlight.onYank;
|
||||||
};
|
inherit (highlight) timer;
|
||||||
preserve_cursor_position = {
|
};
|
||||||
inherit (preserveCursorPosition) enabled;
|
preserve_cursor_position = {
|
||||||
};
|
inherit (preserveCursorPosition) enabled;
|
||||||
textobj = {
|
};
|
||||||
inherit (textobj) enabled;
|
textobj = {
|
||||||
};
|
inherit (textobj) enabled;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// cfg.extraOptions;
|
// cfg.extraOptions;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue