From 18f36d90611833bc5d345c6e9401e9ac684fcf68 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 16 Aug 2021 13:05:35 +0200 Subject: [PATCH] vim: use unnamedplus register to sync with clipboard --- nvim/init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/init.vim b/nvim/init.vim index 93d66cc..43a55a5 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -6,7 +6,7 @@ if $LOCAL_CONFIG == "" | let $LOCAL_CONFIG="~/.local/etc" | endif " Options {{{ set backspace=indent,eol,start " sane backspace behavior set nobackup " don't keep backup file after overwriting a file -set clipboard=unnamed " synchronize with system clipboard +set clipboard=unnamedplus " synchronize with system clipboard set colorcolumn=+1 " highlight column after 'textwidth' set cursorline " highlight the line of the cursor set diffopt=filler,vertical " make side-by-side diffs better