flake/nixos/nvim/plugins/snacks.nix

15 lines
225 B
Nix
Raw Normal View History

2025-02-02 18:53:01 -06:00
{
programs.nixvim = {
plugins.snacks = {
enable = true;
settings = {
bigfile.enabled = true;
notifier = {
enable = true;
timeout = 3000;
};
};
};
};
}