Add lazygit to neovim, add lazydocker

This commit is contained in:
Gene Liverman 2024-06-10 14:57:27 -04:00
parent 8cd511b7a9
commit c62200f8b1
2 changed files with 24 additions and 0 deletions

View file

@ -12,4 +12,27 @@ return {
{
"tpope/vim-fugitive",
},
{
"kdheepak/lazygit.nvim",
cmd = {
"LazyGit",
"LazyGitConfig",
"LazyGitCurrentFile",
"LazyGitFilter",
"LazyGitFilterCurrentFile",
},
-- optional for floating window border decoration
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.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" },
},
config = function()
require("telescope").load_extension("lazygit")
end,
},
}