Xuyuanp/scrollbar.nvim

github github
scrollingscrollbar
stars 260
issues 9
subscribers 8
forks 9
CREATED

2020-09-17

UPDATED

2 years ago


scrollbar.nvim

Github Action License GitHub Contributors

scrollbar for neovim(nightly)

Installation

Just use your favorite plugin manager. e.g. vim-plug:

Plug 'Xuyuanp/scrollbar.nvim'

Startup

This plugin provides only two lua functions, show and clear. The following config is recommended.

augroup ScrollbarInit
  autocmd!
  autocmd WinScrolled,VimResized,QuitPre * silent! lua require('scrollbar').show()
  autocmd WinEnter,FocusGained           * silent! lua require('scrollbar').show()
  autocmd WinLeave,BufLeave,BufWinLeave,FocusLost            * silent! lua require('scrollbar').clear()
augroup end

NOTE: clear is NOT disable. To disable it, call clear, then remove all the autocommands.

Options

See in doc :h Scrollbar.nvim.

Similar Projects