nixvim/config/snacks.nix
2026-03-12 00:27:56 +01:00

14 lines
270 B
Nix

{ lib, ... }:
{
plugins.snacks = {
enable = true;
settings = lib.nixvim.mkRaw ''
{
input = { enabled = true },
notifier = { enabled = true },
scroll = { enabled = true },
words = { enabled = true },
}
'';
};
}