nvim/lua/plugins/notify.lua

11 lines
161 B
Lua
Raw Normal View History

2023-05-13 01:15:01 +00:00
return {
{
"rcarriga/nvim-notify",
config = function()
require("notify").setup({
background_colour = "#191724",
})
end,
},
}