RunningIkkyu / scrollbar.nvim

scrollbar for neovim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 CursorMoved,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

About

scrollbar for neovim

License:Apache License 2.0


Languages

Language:Lua 100.0%