From 14b1f87938b71e7a270588ab3a8681579d42913d Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 21 May 2024 19:37:49 +0200 Subject: [PATCH] Use system clipboard on all platforms --- nvim/base.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nvim/base.lua b/nvim/base.lua index fe83b24..0fbe31c 100644 --- a/nvim/base.lua +++ b/nvim/base.lua @@ -51,9 +51,9 @@ vim.opt.completeopt = 'menu,menuone,noselect' ---------------------------- -------- CLIPBOARD --------- ---------------------------- -if vim.fn.has("wsl") == 1 then - vim.opt.clipboard = vim.opt.clipboard + 'unnamedplus' -end +-- if vim.fn.has("wsl") == 1 then +vim.opt.clipboard:append('unnamedplus') +-- end ----------------------------