scrollbar.nvim
scrollbar.nvim copied to clipboard
scrollbar for neovim
scrollbar.nvim
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
- minimap.vim by @wfxr