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