From 9c73eb4fea99f3c65c282bd66be25822f0ff7566 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Fri, 18 Jul 2025 10:22:08 -0500 Subject: [PATCH] Nvim: add lazygit --- home/.config/nvim/lua/plugins/lazygit.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 home/.config/nvim/lua/plugins/lazygit.lua diff --git a/home/.config/nvim/lua/plugins/lazygit.lua b/home/.config/nvim/lua/plugins/lazygit.lua new file mode 100644 index 00000000..bb18f2ef --- /dev/null +++ b/home/.config/nvim/lua/plugins/lazygit.lua @@ -0,0 +1,17 @@ +return { + "kdheepak/lazygit.nvim", + lazy = true, + cmd = { + "LazyGit", + "LazyGitConfig", + "LazyGitCurrentFile", + "LazyGitFilter", + "LazyGitFilterCurrentFile", + }, + dependencies = { + "nvim-lua/plenary.nvim", + }, + keys = { + { "lg", "LazyGit", desc = "LazyGit" }, + }, +}