Add plugin fredeeb/tardis.nvim
This commit is contained in:
parent
3db31580b4
commit
828b4219e9
1 changed files with 17 additions and 0 deletions
|
|
@ -560,6 +560,23 @@ local plugins = {
|
||||||
"nvim-telescope/telescope.nvim"
|
"nvim-telescope/telescope.nvim"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'fredeeb/tardis.nvim',
|
||||||
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||||
|
config = function ()
|
||||||
|
require('tardis-nvim').setup {
|
||||||
|
keymap = {
|
||||||
|
["next"] = '<C-j>', -- next entry in log (older)
|
||||||
|
["prev"] = '<C-k>', -- previous entry in log (newer)
|
||||||
|
["quit"] = 'q', -- quit all
|
||||||
|
["revision_message"] = '<C-m>', -- show revision message for current revision
|
||||||
|
["commit"] = '<C-g>', -- replace contents of origin buffer with contents of tardis buffer
|
||||||
|
},
|
||||||
|
initial_revisions = 10, -- initial revisions to create buffers for
|
||||||
|
max_revisions = 256, -- max number of revisions to load
|
||||||
|
}
|
||||||
|
end
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'BartSte/nvim-project-marks',
|
'BartSte/nvim-project-marks',
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue