nixvim-for-share/config/plugins/notify.nix
2025-07-26 12:43:01 +00:00

24 lines
494 B
Nix

{
config,
lib,
...
}:
{
plugins = {
# notify.nvim
notify = {
enable = lib.mkIf config.plugins.noice.enable true;
settings = {
# https://github.com/rcarriga/nvim-notify/issues/183#issuecomment-1464892813
on_open = ''
function(win)
vim.api.nvim_win_set_config(win, { focusable = false })
end
'';
background_colour = "#000000";
top_down = false;
render = "minimal";
};
};
};
}