nixvim/config/plugins/git/lazygit.nix
Roel de Cort 61de1726d6 typo
2024-04-13 15:23:37 +02:00

21 lines
340 B
Nix

{ pkgs, ... }: {
extraPlugins = with pkgs.vimPlugins; [
lazygit-nvim
];
extraConfigLua = ''
require("telescope").load_extension("lazygit")
'';
keymaps = [
{
mode = "n";
key = "<leader>gg";
action = "<cmd>LazyGit<CR>";
options = {
desc = "LazyGit (root dir)";
};
};
];
};