14 lines
270 B
Nix
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 },
|
|
}
|
|
'';
|
|
};
|
|
}
|