This commit is contained in:
Nikola Savic 2024-09-09 14:13:06 +02:00
parent a22976111e
commit f8596bb0c6
16 changed files with 1252 additions and 79 deletions

View file

@ -0,0 +1,20 @@
-- nvim v0.8.0
return {
'kdheepak/lazygit.nvim',
cmd = {
'LazyGit',
'LazyGitConfig',
'LazyGitCurrentFile',
'LazyGitFilter',
'LazyGitFilterCurrentFile',
},
-- optional for floating window border decoration
dependencies = {
'nvim-lua/plenary.nvim',
},
-- setting the keybinding for LazyGit with 'keys' is recommended in
-- order to load the plugin when the command is run for the first time
keys = {
{ '<leader>tg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
},
}