16 lines
330 B
Lua
16 lines
330 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>lg', '<cmd>LazyGit<cr>'),
|
|
}
|