Added snacks

This commit is contained in:
EsVagy42 2026-03-12 00:27:56 +01:00
parent 11ea9e9878
commit 09670f3227
2 changed files with 15 additions and 0 deletions

14
config/snacks.nix Normal file
View file

@ -0,0 +1,14 @@
{ lib, ... }:
{
plugins.snacks = {
enable = true;
settings = lib.nixvim.mkRaw ''
{
input = { enabled = true },
notifier = { enabled = true },
scroll = { enabled = true },
words = { enabled = true },
}
'';
};
}