15 lines
225 B
Nix
15 lines
225 B
Nix
|
{
|
||
|
programs.nixvim = {
|
||
|
plugins.snacks = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
bigfile.enabled = true;
|
||
|
notifier = {
|
||
|
enable = true;
|
||
|
timeout = 3000;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|