added plugins
This commit is contained in:
parent
5aeddfdd5d
commit
42a8b0ff06
19 changed files with 322 additions and 74 deletions
12
lua/custom/plugins/lazygit.lua
Normal file
12
lua/custom/plugins/lazygit.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
'kdheepak/lazygit.nvim',
|
||||
-- optional for floating window border decoration
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-telescope/telescope.nvim',
|
||||
},
|
||||
config = function()
|
||||
require('telescope').load_extension 'lazygit'
|
||||
vim.keymap.set('n', '<leader>gg', '<CMD>:LazyGit<CR>', { desc = 'open lazygit' })
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue