tardis again
This commit is contained in:
parent
3d0bb01343
commit
35a65eb852
@ -28,6 +28,7 @@
|
||||
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
|
||||
"rust-tools.nvim": { "branch": "master", "commit": "0cc8adab23117783a0292a0c8a2fbed1005dc645" },
|
||||
"tagbar": { "branch": "master", "commit": "5d6990e4fc5b3e3b88a3af90146f2561c4f6d828" },
|
||||
"tardis.nvim": { "branch": "main", "commit": "ce6e32329093d3fc91747c2cbf6d7534e0c82d1a" },
|
||||
"telescope-project.nvim": { "branch": "master", "commit": "5460c6c60d48618c5c746e5b1cad4c3e8262fdae" },
|
||||
"telescope.nvim": { "branch": "master", "commit": "18774ec7929c8a8003a91e9e1f69f6c32258bbfe" },
|
||||
"ultisnips": { "branch": "master", "commit": "b393ba65386d47664421e1f8b246a87a6e8b218c" },
|
||||
|
@ -168,6 +168,20 @@ return {
|
||||
{ 'mfussenegger/nvim-dap' },
|
||||
|
||||
{ 'lukas-reineke/indent-blankline.nvim' },
|
||||
{
|
||||
'fredeeb/tardis.nvim',
|
||||
config = function()
|
||||
require('tardis-nvim').setup({
|
||||
keymap = {
|
||||
next = '<C-n>', -- next entry in log (older)
|
||||
prev = '<C-m>', -- previous entry in log (newer)
|
||||
quit = 'q', -- quit all
|
||||
commit_message = 'm', -- show commit message for current commit in buffer
|
||||
},
|
||||
commits = 32, -- max number of commits to read
|
||||
})
|
||||
end
|
||||
},
|
||||
|
||||
{
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
|
Loading…
Reference in New Issue
Block a user