Files
nixos-config/home/programs/nixvim-old/plugins/notify.nix
Elias Schröter d7b58e2216 nixvim
install initial nixvim
2026-04-08 10:13:11 +02:00

18 lines
231 B
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
notify = {
enable = true;
settings = {
render = "wrapped-compact";
};
};
};
opts = {
termguicolors = true;
};
};
}