add menu and lazygit

This commit is contained in:
2024-11-20 02:14:18 +03:00
parent d9272a2cfe
commit 9b6cac6a82
4 changed files with 64 additions and 0 deletions

20
lua/plugins/lazygit.lua Normal file
View File

@ -0,0 +1,20 @@
return {
"kdheepak/lazygit.nvim",
lazy = true,
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" },
},
}

8
lua/plugins/menu.lua Normal file
View File

@ -0,0 +1,8 @@
return {
"nvzone/menu",
lazy = true,
config = function() end,
dependencies = {
{ "nvzone/volt", lazy = true },
},
}