11 lines
228 B
Lua
11 lines
228 B
Lua
|
return {
|
||
|
"rcarriga/nvim-notify",
|
||
|
config = function(plugin, opts)
|
||
|
require("plugins.configs.notify")(plugin, opts)
|
||
|
local notify = require "notify"
|
||
|
notify.setup({
|
||
|
background_colour = "#000000"
|
||
|
})
|
||
|
end,
|
||
|
}
|