This commit is contained in:
Belal Elsabbagh
2024-12-18 22:06:31 +02:00
parent 91a2b6a5dc
commit 98b7825e09
46 changed files with 1534 additions and 506 deletions

19
nvim/lua/plugins/git.lua Normal file
View File

@@ -0,0 +1,19 @@
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' },
},
}