config-neovim/lua/plugins/notify.lua

9 lines
183 B
Lua
Raw Normal View History

return {
"rcarriga/nvim-notify",
config = function(LazyPlugin, opts)
local notify = require("notify")
vim.notify = notify
notify.setup(opts)
end
}