mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
14 lines
267 B
Nix
14 lines
267 B
Nix
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
gitsigns.enable = true;
|
|
snacks.settings = { lazygit.enable = true; };
|
|
};
|
|
keymaps = [{
|
|
key = "<leader>gl";
|
|
action = "<cmd>lua Snacks.lazygit()<cr>";
|
|
options.desc = "LazyGit";
|
|
}];
|
|
};
|
|
}
|