From b7ce893ea8b220167cb90ebb1dc59be4d447d833 Mon Sep 17 00:00:00 2001 From: Dennis Chan Date: Tue, 27 May 2025 17:19:13 +0800 Subject: [PATCH] clipboard setting --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index f4287a75..b0ef6fe6 100644 --- a/init.lua +++ b/init.lua @@ -67,6 +67,9 @@ vim.opt.inccommand = 'split' -- Show which line your cursor is on vim.opt.cursorline = true +-- Enable unnamedplus clipboard +vim.opt.clipboard = 'unnamedplus' + -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10