24 lines
494 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|