nvim/lua/plugins/editor_notify.lua
RingOfStorms (Joshua Bell) 4582bd5469 Many things are working
2024-05-01 17:33:08 -05:00

12 lines
199 B
Lua

return {
"rcarriga/nvim-notify",
lazy = false,
priority = 150,
opts = {
top_down = false,
timeout = 5000,
},
config = function(_, opts)
require("notify").setup(opts)
end,
}