mirror of
https://github.com/cap153/nvim.git
synced 2025-12-27 03:34:57 +08:00
15 lines
237 B
Lua
15 lines
237 B
Lua
-- ===
|
|
-- === 在neovim中启动lazygit
|
|
-- ===
|
|
|
|
return {
|
|
"kdheepak/lazygit.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
keys = {
|
|
{ "<c-g>", "<cmd>LazyGit<CR>", desc = "Toggle Lazygit" },
|
|
},
|
|
config = function()
|
|
end
|
|
}
|