10 lines
227 B
Lua
10 lines
227 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,
|
|
}
|