add lazygit integration (its buggy as fuck feel free to disable)

This commit is contained in:
nik alexandrov 2024-10-04 12:43:53 +01:00
parent a9a219378a
commit 9d098d2467
1 changed files with 19 additions and 5 deletions

View File

@ -1,5 +1,19 @@
-- You can add your own plugins here or in other files in this directory! return {
-- I promise not to create any merge conflicts in this directory :) 'kdheepak/lazygit.nvim',
-- cmd = {
-- See the kickstart.nvim README for more information 'LazyGit',
return {} '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>lg', '<cmd>LazyGit<cr>', desc = 'Open lazy git' },
},
}