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

View file

@ -22,6 +22,7 @@
./catppuccin.nix
./trouble.nix
./nvim-notify.nix
./snacks.nix
];
opts = {
number = true;

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 },
}
'';
};
}