add lazygit
This commit is contained in:
parent
53b784bad4
commit
9aff5fead3
2 changed files with 15 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
"gitsigns.nvim": { "branch": "main", "commit": "4a143f13e122ab91abdc88f89eefbe70a4858a56" },
|
||||
"indent-blankline.nvim": { "branch": "master", "commit": "d98f537c3492e87b6dc6c2e3f66ac517528f406f" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "eb4957442e3182f051b0ae11da32e06d22c190e3" },
|
||||
"lazygit.nvim": { "branch": "main", "commit": "ad3e1ea592f9d13e86e0d4e850224d9d78069508" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "0a5a66803c7407767b799067986b4dc3036e1983" },
|
||||
"neo-tree.nvim": { "branch": "v3.x", "commit": "29f7c215332ba95e470811c380ddbce2cebe2af4" },
|
||||
"noice.nvim": { "branch": "main", "commit": "e5cb20c6e14305d24025ecb77d7d4dd9d61f1a64" },
|
||||
|
|
14
lua/plugins/lazygit.lua
Normal file
14
lua/plugins/lazygit.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
local Plugin = { "kdheepak/lazygit.nvim" }
|
||||
Plugin.cmd = {
|
||||
"LazyGit",
|
||||
"LazyGitConfig",
|
||||
"LazyGitCurrentFile",
|
||||
"LazyGitFilter",
|
||||
"LazyGitFilterCurrentFile",
|
||||
}
|
||||
Plugin.dependencies = { "nvim-lua/plenary.nvim" }
|
||||
Plugin.keys = {
|
||||
{ "<leader>lg", "<cmd>LazyGit<cr>", desc = "LazyGit" },
|
||||
}
|
||||
|
||||
return Plugin
|
Loading…
Reference in a new issue