From 152611874aa413b00d31d60a7117535b5f222db5 Mon Sep 17 00:00:00 2001 From: Nick Burt Date: Mon, 5 Feb 2024 11:18:03 -0600 Subject: [PATCH] fix shared clipboard with os --- lua/settings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/settings.lua b/lua/settings.lua index d793e745..6837c983 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -11,7 +11,7 @@ vim.opt.mouse = '' -- FIX: shared clipboard not working -- Sync clipboard between OS and Neovim. -vim.opt.clipboard = 'unnamedplus' +vim.opt.clipboard = 'unnamed,unnamedplus' -- Enable spell check vim.opt.spell = true