add lazygit integration (its buggy as fuck feel free to disable)
This commit is contained in:
parent
a9a219378a
commit
9d098d2467
|
@ -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' },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue