refactor: add background color for notify plugin

This commit is contained in:
Dinesh Salunke 2024-12-16 12:44:57 +05:30
parent 68d31dfb1c
commit 354db1f435

View File

@ -131,7 +131,12 @@ return {
{
"rcarriga/nvim-notify",
opts = {},
config = function(_, opts)
local notify = require("notify")
notify.setup(vim.tbl_extend("keep", {
background_colour = "#000000",
}, opts))
end,
},
{