Files
nixos-config/home/programs/nixvim/plugins/notify.nix
Elias Schröter 761067ca6e nixvim plugins
install all currently wanted plugins
2026-04-13 18:09:16 +02:00

15 lines
191 B
Nix

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