mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 17:47:09 +00:00
20 lines
314 B
Lua
20 lines
314 B
Lua
return {
|
|
'kdheepak/lazygit.nvim',
|
|
lazy = true,
|
|
cmd = {
|
|
'LazyGit',
|
|
'LazyGitConfig',
|
|
'LazyGitCurrentFile',
|
|
'LazyGitFilter',
|
|
'LazyGitFilterCurrentFile',
|
|
},
|
|
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
},
|
|
|
|
keys = {
|
|
{ '<leader>gg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
|
|
},
|
|
}
|