17 lines
330 B
Lua
17 lines
330 B
Lua
-- https://github.com/rcarriga/nvim-notify
|
|
|
|
---@type LazyPluginSpec
|
|
return {
|
|
"rcarriga/nvim-notify",
|
|
priority = 900,
|
|
lazy = false,
|
|
opts = {
|
|
render = "default",
|
|
stages = "static",
|
|
},
|
|
config = function(_, opts)
|
|
vim.notify = require("notify")
|
|
vim.notify.setup(opts)
|
|
end,
|
|
}
|