13 lines
197 B
Lua
13 lines
197 B
Lua
local function setup()
|
|
local notify = require("notify")
|
|
notify.setup({
|
|
background_colour = "#282828",
|
|
})
|
|
vim.notify = notify
|
|
end
|
|
|
|
return {
|
|
"rcarriga/nvim-notify",
|
|
config = setup,
|
|
}
|