From 96ce5d056b5372f760276fb61ca4c8aabb6fdc0d Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Fri, 5 May 2023 15:44:44 +0300 Subject: [PATCH 1/2] [vim] use system clipboard --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index ae66434..9a15521 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -11,6 +11,7 @@ set noswapfile set encoding=utf-8 syntax enable set timeoutlen=300 ttimeoutlen=0 " https://www.johnhawthorn.com/2012/09/vi-escape-delays/ +set clipboard=unnamed " For coc-vim. Always show the signcolumn, otherwise it would shift the text each time " diagnostics appear/become resolved. From 3ea4f8d9b623ea9834e1a58d92e0419443631304 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Fri, 9 Jun 2023 13:43:53 +0300 Subject: [PATCH 2/2] [vim] set nocompatible --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index 9a15521..884cfb0 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -12,6 +12,7 @@ set encoding=utf-8 syntax enable set timeoutlen=300 ttimeoutlen=0 " https://www.johnhawthorn.com/2012/09/vi-escape-delays/ set clipboard=unnamed +set nocompatible " For coc-vim. Always show the signcolumn, otherwise it would shift the text each time " diagnostics appear/become resolved.