Add wayland clipboard support

This commit is contained in:
Yosafat Marselino Agus 2024-01-25 23:42:14 +07:00
parent 25a3f1afc0
commit cc59e82ad0

2
.vimrc
View File

@ -4,6 +4,7 @@
call plug#begin('~/.vim/plugged')
" Essentials
Plug 'jasonccox/vim-wayland-clipboard'
Plug 'tpope/vim-sensible' " Sensible defaults
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'junegunn/vim-easy-align'
@ -201,3 +202,4 @@ function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction