fix: nvim-notify background

This commit is contained in:
asep.komarudin 2024-06-13 16:51:54 +07:00
parent be59c58be4
commit 7482132068
3 changed files with 5 additions and 4 deletions

View file

@ -24,7 +24,8 @@ return {
config = function()
local notify = require "notify"
-- this for transparency
notify.setup { background_colour = "#000000", render = "compact" }
-- notify.setup { background_colour = "#000000", render = "compact" }
notify.setup { render = "compact" }
-- this overwrites the vim notify function
vim.notify = notify.notify
end,