fix: delete lazygit keymap when using gitui

This commit is contained in:
Rubin Bhandari 2024-04-02 19:09:41 +05:45
parent 97480dc5d2
commit 370b1534ca

View file

@ -18,6 +18,7 @@ return {
opts = function(_, opts) opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {} opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "gitui" }) vim.list_extend(opts.ensure_installed, { "gitui" })
vim.keymap.del("n", "<leader>gf")
end, end,
}, },
} }