{ ... }: { plugins.lazygit = { enable = true; }; keymaps = [ { mode = "n"; key = "gg"; action = "LazyGit"; options = { desc = "Open LazyGit"; }; } { mode = "n"; key = "lr"; action = "lua require(\"telescope\").extensions.lazygit.lazygit()"; options = { desc = "List repositories"; }; } ]; extraConfigLua = '' require("telescope").load_extension("lazygit") ''; }