From 7d9119e35b96a13471b3751fd7275653d65a542b Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Fri, 27 Jun 2025 11:34:56 +0200 Subject: [PATCH] editors.neovim: Fix clipboard copy I forget to add registers = "unnamedplus" --- modules/home/editors/neovim.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/home/editors/neovim.nix b/modules/home/editors/neovim.nix index b4fc91d..721ad41 100644 --- a/modules/home/editors/neovim.nix +++ b/modules/home/editors/neovim.nix @@ -38,6 +38,8 @@ in { clipboard = { enable = true; + registers = "unnamedplus"; + providers = { wl-copy.enable = true; };