9 lines
183 B
Lua
9 lines
183 B
Lua
|
return {
|
||
|
"rcarriga/nvim-notify",
|
||
|
config = function(LazyPlugin, opts)
|
||
|
local notify = require("notify")
|
||
|
vim.notify = notify
|
||
|
notify.setup(opts)
|
||
|
end
|
||
|
}
|