little bit overhaul here and there :))

This commit is contained in:
2026-03-21 15:55:58 +01:00
parent 37e4ba19f8
commit 650ef78405
19 changed files with 601 additions and 428 deletions

19
lua/plugins/lazygit.lua Normal file
View File

@@ -0,0 +1,19 @@
-- lua/plugins/extras/lazygit.lua
-- LazyGit floating window integration
-- https://github.com/kdheepak/lazygit.nvim
return {
'kdheepak/lazygit.nvim',
lazy = true,
cmd = {
'LazyGit',
'LazyGitConfig',
'LazyGitCurrentFile',
'LazyGitFilter',
'LazyGitFilterCurrentFile',
},
dependencies = { 'nvim-lua/plenary.nvim' },
keys = {
{ '<C-g>', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
},
}