Add shortcut for global clipboard copy and paste

This commit is contained in:
flyingscorpio@arch-desktop 2020-04-10 11:33:23 +02:00
parent dd9d48d1ea
commit 4f195e3261

View file

@ -25,6 +25,12 @@ nmap <F2> :w<CR>
" in insert mode F2 will exit insert, save, enters insert again
imap <F2> <ESC>:w<CR>i
" in normal mode <leader>y will save to the selection clipboard
nmap <leader>y "*yy
" in normal mode <leader>p will paste from the selection clipboard
nmap <leader>p "*p
" }}}
" VUNDLE {{{