From bb784bf05681e76fb7647039ac5310ab2d98d54f Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Tue, 30 Jun 2026 10:25:28 -0400 Subject: yank paste to system clipboard --- nvf/nvf.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvf/nvf.nix b/nvf/nvf.nix index 1c9b64f..33fcc2c 100644 --- a/nvf/nvf.nix +++ b/nvf/nvf.nix @@ -8,6 +8,9 @@ -- `:q` quits all buffers vim.cmd([[cnoreabbrev q (getcmdtype() == ':' && getcmdline() ==# 'q') ? 'qa' : 'q']]) vim.cmd([[cnoreabbrev q! (getcmdtype() == ':' && getcmdline() ==# 'q!') ? 'qa!' : 'q!']]) + + -- yank/paste through the system clipboard + vim.opt.clipboard = "unnamedplus" ''; # ui -- cgit v1.3.1