dotfiles/modules/programs/nvim/new_plugins/snacks.nix

25 lines
416 B
Nix

_:
{
home-manager.users.moritz.programs.nixvim = {
keymaps = [
{
key = "<leader>g";
action.__raw = ''
function()
require("snacks").lazygit()
end
'';
options.desc = "Lazygit";
}
];
plugins.snacks = {
enable = true;
settings = {
bigfile.enable = true;
lazygit.enable = true;
};
};
};
}