18 lines
393 B
Lua
18 lines
393 B
Lua
return {
|
|
{
|
|
'kdheepak/lazygit.nvim',
|
|
cmd = {
|
|
'LazyGit',
|
|
'LazyGitConfig',
|
|
'LazyGitCurrentFile',
|
|
'LazyGitFilter',
|
|
'LazyGitFilterCurrentFile',
|
|
},
|
|
-- optional for floating window border decoration
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
},
|
|
},
|
|
vim.keymap.set('n', '<leader>tg', ':LazyGit<CR>', { desc = '[T]oggle lazy [G]it' }),
|
|
}
|