diff --git a/modules/nvim.nix b/modules/nvim.nix index 9d5aea1..31ee7aa 100644 --- a/modules/nvim.nix +++ b/modules/nvim.nix @@ -21,6 +21,7 @@ breakindent = true; # Preserve indentation when wrapping termguicolors = true; autoread = true; # Automatically reload files when changed externally + clipboard = "unnamedplus"; # Use system clipboard by default }; # Enable filetype detection @@ -142,12 +143,6 @@ } # System clipboard keymaps - { - mode = ["n" "v"]; - key = "y"; - action = "\"+y"; - options = { desc = "Copy to system clipboard"; }; - } { mode = "n"; key = "p";