This commit is contained in:
sharings 2025-07-26 12:43:01 +00:00
commit 1e2ca5a6fc
71 changed files with 3330 additions and 0 deletions

24
config/plugins/notify.nix Normal file
View file

@ -0,0 +1,24 @@
{
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";
};
};
};
}