From 6726aa421c5c4b36da6b889d032fb5d0d8fb5728 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Thu, 26 Jun 2025 16:25:00 +0200 Subject: [PATCH] editors.neovim: Enable clipboard --- modules/home/editors/neovim.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/home/editors/neovim.nix b/modules/home/editors/neovim.nix index 626572a..ee6cd71 100644 --- a/modules/home/editors/neovim.nix +++ b/modules/home/editors/neovim.nix @@ -30,6 +30,14 @@ in { enable = true; }; + clipboard = { + enable = true; + + providers = { + wl-copy.enable = true; + }; + }; + lsp = { enable = true; formatOnSave = true;