From 18d59dffdcd047fdf40f8e09b3d5c25301750ba4 Mon Sep 17 00:00:00 2001 From: bumpsoo Date: Fri, 19 Jul 2024 23:55:33 +0900 Subject: [PATCH] feat: lazygit added --- .config/nvim/lua/bumpsoo/plugins/lazygit.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .config/nvim/lua/bumpsoo/plugins/lazygit.lua diff --git a/.config/nvim/lua/bumpsoo/plugins/lazygit.lua b/.config/nvim/lua/bumpsoo/plugins/lazygit.lua new file mode 100644 index 0000000..b753609 --- /dev/null +++ b/.config/nvim/lua/bumpsoo/plugins/lazygit.lua @@ -0,0 +1,16 @@ +return { + "kdheepak/lazygit.nvim", + cmd = { + "LazyGit", + "LazyGitConfig", + "LazyGitCurrentFile", + "LazyGitFilter", + "LazyGitFilterCurrentFile", + }, + dependencies = { + "nvim-lua/plenary.nvim", + }, + keys = { + { "lg", "LazyGit", desc = "LazyGit" } + } +}