15 lines
191 B
Nix
15 lines
191 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.nixvim = {
|
|
plugins.notify = {
|
|
enable = true;
|
|
autoLoad = true;
|
|
|
|
settings.render = "wrapped-compact";
|
|
};
|
|
|
|
opts.termguicolors = true;
|
|
};
|
|
}
|