This commit is contained in:
Christian Nieves
2022-06-10 20:29:24 +00:00
parent d971bdd35c
commit 6dcdafa889
5 changed files with 49 additions and 35 deletions

View File

@ -61,7 +61,18 @@ set scrolloff=3 " Minumum lines to keep above and below cursor
" makes sure that when opening, files are normal, i.e. not folded.
set nofoldenable
" set clipboard=unnamed
let g:clipboard = #{
\ name: 'xsel',
\ copy: {
\ '+': ['xclip', '--nodetach', '-i', '-b'],
\ '*': ['xclip', '--nodetach', '-i', '-p'],
\ },
\ paste: {
\ '+': ['xclip', '-o', '-b'],
\ '*': ['xclip', '-o', '-p'],
\ },
\ cache_enabled: 1,
\ }
set shortmess=A
set updatetime=100