Nixvim config update: +Snacks, -telescope

This commit is contained in:
Hadi
2025-03-21 14:55:38 +01:00
parent ea3b343523
commit 9cc35a7039
13 changed files with 319 additions and 488 deletions

View File

@@ -0,0 +1,13 @@
{
programs.nixvim = {
plugins = {
gitsigns.enable = true;
snacks.settings = { lazygit.enable = true; };
};
keymaps = [{
key = "<leader>gl";
action = "<cmd>lua Snacks.lazygit()<cr>";
options.desc = "LazyGit";
}];
};
}