20 lines
363 B
Nix
20 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;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|