mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(notify): set default zindex=100
This commit is contained in:
parent
54fa9ce584
commit
7fb79486ed
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,9 @@ return {
|
|||
max_width = function()
|
||||
return math.floor(vim.o.columns * 0.75)
|
||||
end,
|
||||
on_open = function(win)
|
||||
vim.api.nvim_win_set_config(win, { zindex = 100 })
|
||||
end,
|
||||
},
|
||||
init = function()
|
||||
-- when noice is not enabled, install notify on VeryLazy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue