add quick system register access

This commit is contained in:
LordMZTE 2021-01-13 21:13:52 +01:00
parent cc82b0f63a
commit 7cd7981784

View file

@ -55,6 +55,11 @@ nnoremap <silent> fzf :FZF<CR>
" quick cursor movement while holding ctrl
nnoremap <C-Up> 5k
nnoremap <C-Down> 5j
" quick pasting/yoinking to system register
nnoremap +y "+y
nnoremap +p "+p
nnoremap *y "*y
nnoremap *p "*p
" GoTo code navigation.
nmap <silent> gd <Plug>(coc-definition)