π A simple NeoVim plugin that shows virtual inline Git blame information.
- Neovim >= 0.9
- awk
- sed
- git
Plug 'theoboldalex/praise.nvim'
use {'theoboldalex/praise.nvim'}
-- init.lua
{ 'theoboldalex/praise.nvim' }
-- plugins/praise.lua
return {
'theoboldalex/praise.nvim'
}
You can change the point at which the blame information appears in the buffer by setting the updatetime option in your configuration.
vim.opt.updatetime = 1000 -- the default is 4000ms
Warning
Setting very low updatetime
values can have a negative effect on performance. make sure you have read and understood h: updatetime
and :h CursorMoved
.