diff --git a/lua/plugins/ui.lua b/lua/plugins/ui.lua index e070691..bcdbeff 100644 --- a/lua/plugins/ui.lua +++ b/lua/plugins/ui.lua @@ -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, }, {