forked from dineshsalunke/nvim-config
12 lines
268 B
Lua
12 lines
268 B
Lua
return {
|
|
{
|
|
"rcarriga/nvim-notify",
|
|
config = function(_, opts)
|
|
local notify = require("notify")
|
|
notify.setup(vim.tbl_extend("keep", {
|
|
background_colour = "#000000",
|
|
}, opts))
|
|
end,
|
|
},
|
|
}
|