added lazygit, need to reinstall
This commit is contained in:
parent
a2f8b29713
commit
b05bbf4d2f
2
init.lua
2
init.lua
|
@ -253,6 +253,8 @@ require('lazy').setup({
|
|||
require 'custom.plugins.ollama',
|
||||
-- oil, a file explorer
|
||||
require 'custom.plugins.oil',
|
||||
-- lazy git, for git stuff
|
||||
require 'lua.custom.plugins.lazygit',
|
||||
-- Highlight todo, notes, etc in comments
|
||||
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
||||
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
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>lg', '<cmd>LazyGit<cr>', desc = 'LazyGit' },
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue