mirror of
https://github.com/anthonyoteri/dotfiles.git
synced 2026-06-05 23:56:52 -04:00
7 lines
302 B
VimL
7 lines
302 B
VimL
Plug 'terryma/vim-smooth-scroll'
|
|
|
|
noremap <silent> <c-u> :call smooth_scroll#up(&scroll, 0, 4)<CR>
|
|
noremap <silent> <c-d> :call smooth_scroll#down(&scroll, 0, 4)<CR>
|
|
noremap <silent> <c-b> :call smooth_scroll#up(&scroll*2, 0, 8)<CR>
|
|
noremap <silent> <c-f> :call smooth_scroll#down(&scroll*2, 0, 8)<CR>
|