19 lines
363 B
Nix
19 lines
363 B
Nix
{
|
|
programs.nixvim = {
|
|
plugins.lazygit = {
|
|
enable = true;
|
|
};
|
|
extraConfigLua = ''require("telescope").load_extension("lazygit")'';
|
|
keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<leader>g";
|
|
action = "<CMD>LazyGit<CR>";
|
|
options = {
|
|
desc = "LazyGit";
|
|
silent = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|