diff --git a/home/.config/nvim/lua/plugs/lazygit.lua b/home/.config/nvim/lua/plugs/lazygit.lua new file mode 100644 index 0000000..27779e2 --- /dev/null +++ b/home/.config/nvim/lua/plugs/lazygit.lua @@ -0,0 +1,18 @@ +return { + "kdheepak/lazygit.nvim", + cmd = { + "LazyGit", + "LazyGitConfig", + "LazyGitCurrentFile", + "LazyGitFilter", + "LazyGitFilterCurrentFile", + }, + 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 = { + { "lg", "LazyGit", desc = "LazyGit" } + } +}