From 804df84077e02e84c9c164d2a1c307fb208b2ee0 Mon Sep 17 00:00:00 2001 From: Ian Roddis <31021769+iroddis@users.noreply.github.com> Date: Tue, 30 Apr 2024 20:41:19 -0300 Subject: [PATCH] Keep OS clipboard separate from nvim keyboard --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 46c6532..9a706a1 100644 --- a/init.lua +++ b/init.lua @@ -341,7 +341,7 @@ vim.opt.undofile = true -- Sync clipboard between OS and Neovim. -- Remove this option if you want your OS clipboard to remain independent. -- See `:help 'clipboard'` -vim.o.clipboard = 'unnamedplus' +-- vim.o.clipboard = 'unnamedplus' -- Enable break indent vim.o.breakindent = true