Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 922 Bytes

README.md

File metadata and controls

49 lines (35 loc) · 922 Bytes

Praise.nvim

🙏 A simple NeoVim plugin that shows virtual inline Git blame information.

image

Requirements

  • Neovim >= 0.9
  • awk
  • sed
  • git

Installation

Plug

Plug 'theoboldalex/praise.nvim'

Packer

use {'theoboldalex/praise.nvim'}

Lazy

-- init.lua
{ 'theoboldalex/praise.nvim' }

-- plugins/praise.lua
return {
  'theoboldalex/praise.nvim'
}

Customisation

updatetime

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.