diff --git a/lua/custom/plugins/lazygit.lua b/lua/custom/plugins/lazygit.lua index 843ae3a..aed19c5 100644 --- a/lua/custom/plugins/lazygit.lua +++ b/lua/custom/plugins/lazygit.lua @@ -4,4 +4,10 @@ return { dependencies = { "nvim-lua/plenary.nvim", }, + config = function() + vim.g.lazygit_floating_window_scaling_factor = 0.8 + vim.keymap.set("n", "gg", "LazyGit") + require("telescope").load_extension("lazygit") + vim.keymap.set("n", "gt", ":lua require('telescope').extensions.lazygit.lazygit()") + end }