From 90847146d6697701f8d4f338349c6d4a5d314b05 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 24 Jan 2024 10:38:25 +0100 Subject: [PATCH] plugins/yanky: fix wrong definition of setupOptions --- plugins/utils/yanky.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/plugins/utils/yanky.nix b/plugins/utils/yanky.nix index 493ae38f..a6219d1d 100644 --- a/plugins/utils/yanky.nix +++ b/plugins/utils/yanky.nix @@ -227,20 +227,20 @@ in { picker.telescope.mappings ); }; - system_clipboard = { - sync_with_ring = systemClipboard.syncWithRing; - }; - highlight = { - on_put = highlight.onPut; - on_yank = highlight.onYank; - inherit (highlight) timer; - }; - preserve_cursor_position = { - inherit (preserveCursorPosition) enabled; - }; - textobj = { - inherit (textobj) enabled; - }; + }; + system_clipboard = { + sync_with_ring = systemClipboard.syncWithRing; + }; + highlight = { + on_put = highlight.onPut; + on_yank = highlight.onYank; + inherit (highlight) timer; + }; + preserve_cursor_position = { + inherit (preserveCursorPosition) enabled; + }; + textobj = { + inherit (textobj) enabled; }; } // cfg.extraOptions;