From d864f6f7f7e2d7d9265417b42fa06e4b27ffcf20 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Sun, 24 Dec 2023 11:55:19 +0100 Subject: [PATCH] Testing "+ as default register for yank/paste --- lua/general-options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/general-options.lua b/lua/general-options.lua index d81c3eb..6b17b11 100644 --- a/lua/general-options.lua +++ b/lua/general-options.lua @@ -13,7 +13,7 @@ vim.o.mouse = 'a' -- 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