Use system clipboard on all platforms

This commit is contained in:
Martin
2024-05-21 19:37:49 +02:00
parent 9dff153c8b
commit 14b1f87938

View File

@ -51,9 +51,9 @@ vim.opt.completeopt = 'menu,menuone,noselect'
---------------------------- ----------------------------
-------- CLIPBOARD --------- -------- CLIPBOARD ---------
---------------------------- ----------------------------
if vim.fn.has("wsl") == 1 then -- if vim.fn.has("wsl") == 1 then
vim.opt.clipboard = vim.opt.clipboard + 'unnamedplus' vim.opt.clipboard:append('unnamedplus')
end -- end
---------------------------- ----------------------------